From e34a115aa392afe6d1e129291fe149d1f1478902 Mon Sep 17 00:00:00 2001 From: Emran Ramezan Date: Fri, 18 Aug 2023 15:57:18 +0100 Subject: [PATCH] fixes #24 added new tests --- corpus/conflicts.txt | 54 +- grammar.js | 2 +- package.json | 2 +- src/grammar.json | 2 +- src/parser.c | 81323 +++++++++++++++++++++-------------------- 5 files changed, 41031 insertions(+), 40352 deletions(-) diff --git a/corpus/conflicts.txt b/corpus/conflicts.txt index 3be7dff..2e43fd4 100644 --- a/corpus/conflicts.txt +++ b/corpus/conflicts.txt @@ -2,11 +2,15 @@ Orphan Punctuation Marks ================== -@ { } {} () ! +@ { } {} () ! ( ) --- (blade + (php) + (php) + (php) + (php) (php) (php) (php) @@ -28,13 +32,41 @@ test@test.com --- - (blade - (php) - (php) - (php) - (php) - (conditional - (directive_start) - (parameter) - (php) - (directive_end))) \ No newline at end of file +(blade + (php) + (php) + (php) + (php) + (conditional + (directive_start) + (parameter) + (php) + (directive_end))) + +================== +Comments Ending with Punctuation Conflict +================== + +{{--)--}} +{{--}--}} +{{--@--}} +{{--!--}} + +--- +(blade + (comment + (bracket_start) + (text) + (bracket_end)) + (comment + (bracket_start) + (text) + (bracket_end)) + (comment + (bracket_start) + (text) + (bracket_end)) + (comment + (bracket_start) + (text) + (bracket_end))) \ No newline at end of file diff --git a/grammar.js b/grammar.js index 009d8dc..60b6bb8 100644 --- a/grammar.js +++ b/grammar.js @@ -412,7 +412,7 @@ module.exports = grammar({ // !text text: ($) => choice( - token(prec(-1, /[{}!@()?-][a-zA-Z\d]*[^\(]/)), // custom directive conflict resolution + token(prec(-1, /@[a-zA-Z\d]*[^\(-]/)), // custom directive conflict resolution token(prec(-2, /[{}!@()?-]/)), // orphan tags token( prec( diff --git a/package.json b/package.json index fb3b0f3..ac1b6fd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-blade", - "version": "0.3.1", + "version": "0.3.2", "description": "tree-sitter-blade for Laravel Blade files", "main": "bindings/node", "keywords": [ diff --git a/src/grammar.json b/src/grammar.json index 5c3c282..f5808e9 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1666,7 +1666,7 @@ "value": -1, "content": { "type": "PATTERN", - "value": "[{}!@()?-][a-zA-Z\\d]*[^\\(]" + "value": "@[a-zA-Z\\d]*[^\\(-]" } } }, diff --git a/src/parser.c b/src/parser.c index 939d694..2ace075 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5093,25 +5093,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(92); - if (lookahead == '!') ADVANCE(721); - if (lookahead == '(') ADVANCE(698); - if (lookahead == ')') ADVANCE(699); - if (lookahead == '-') ADVANCE(723); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(724); - if (lookahead == '{') ADVANCE(722); - if (lookahead == '}') ADVANCE(757); + if (eof) ADVANCE(95); + if (lookahead == '!') ADVANCE(719); + if (lookahead == '(') ADVANCE(701); + if (lookahead == ')') ADVANCE(702); + if (lookahead == '-') ADVANCE(721); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(722); + if (lookahead == '{') ADVANCE(720); + if (lookahead == '}') ADVANCE(755); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 1: - if (lookahead == '!') ADVANCE(721); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '{') ADVANCE(756); + if (lookahead == '!') ADVANCE(719); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(756); + if (lookahead == '{') ADVANCE(754); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5119,520 +5120,507 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '@' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 2: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(755); - if (lookahead == '{') ADVANCE(756); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(2) - if (lookahead != 0) ADVANCE(760); + if (lookahead == '!') ADVANCE(102); END_STATE(); case 3: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(728); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(753); + if (lookahead == '{') ADVANCE(754); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 4: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(727); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(726); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(4) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 5: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); if (lookahead == '@') ADVANCE(725); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(5) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 6: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(730); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(723); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(6) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 7: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(732); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(728); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(7) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 8: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(734); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(730); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(8) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 9: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(736); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(732); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(9) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 10: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(738); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(734); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(10) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 11: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(740); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(736); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(11) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 12: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(742); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(738); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(12) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 13: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(744); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(740); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(13) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 14: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(746); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(742); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(14) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 15: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(748); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(744); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(15) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 16: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(749); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(746); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(16) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 17: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(750); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(747); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(17) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 18: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(751); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(748); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(18) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 19: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(752); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(749); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(19) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 20: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(729); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(750); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(20) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 21: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(753); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(727); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(21) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 22: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(754); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(751); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(22) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 23: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(731); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(752); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(23) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 24: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(733); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(729); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(24) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 25: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(735); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(731); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(25) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 26: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(737); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(733); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(26) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 27: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(739); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(735); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(27) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 28: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(741); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(737); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(28) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 29: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(743); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(739); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(29) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 30: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(745); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(741); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(30) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 31: - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(747); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(743); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(31) - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 32: - if (lookahead == '(') ADVANCE(706); - if (lookahead == ')') ADVANCE(699); - if (lookahead == '{') ADVANCE(704); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(745); + if (lookahead == '{') ADVANCE(720); + if (lookahead == '!' || + lookahead == ')' || + lookahead == '-' || + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(700); - if (lookahead != 0) ADVANCE(705); + lookahead == ' ') SKIP(32) + if (lookahead != 0) ADVANCE(757); END_STATE(); case 33: - if (lookahead == '(') ADVANCE(706); - if (lookahead == ')') ADVANCE(707); - if (lookahead == '{') ADVANCE(704); + if (lookahead == '(') ADVANCE(709); + if (lookahead == ')') ADVANCE(702); + if (lookahead == '{') ADVANCE(707); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(703); - if (lookahead != 0) ADVANCE(705); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 34: - if (lookahead == '-') ADVANCE(723); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '{') ADVANCE(756); + if (lookahead == '(') ADVANCE(709); + if (lookahead == ')') ADVANCE(710); + if (lookahead == '{') ADVANCE(707); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(34) + lookahead == ' ') ADVANCE(706); + if (lookahead != 0) ADVANCE(708); + END_STATE(); + case 35: + if (lookahead == '-') ADVANCE(721); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(756); + if (lookahead == '{') ADVANCE(754); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || - lookahead == '@' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); - END_STATE(); - case 35: - if (lookahead == '-') ADVANCE(36); + lookahead == '}') ADVANCE(718); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(35) + if (lookahead != 0) ADVANCE(757); END_STATE(); case 36: - if (lookahead == '-') ADVANCE(93); + if (lookahead == '-') ADVANCE(37); END_STATE(); case 37: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(755); - if (lookahead == '{') ADVANCE(756); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(37) - if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + if (lookahead == '-') ADVANCE(96); END_STATE(); case 38: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(728); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(753); + if (lookahead == '{') ADVANCE(754); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5641,28 +5629,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 39: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(727); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(756); + if (lookahead == '{') ADVANCE(754); + if (lookahead == '}') ADVANCE(755); + if (lookahead == '!' || + lookahead == '(' || + lookahead == ')' || + lookahead == '-') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(39) - if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 40: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(725); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(726); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5671,13 +5659,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 41: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(730); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(725); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5686,13 +5674,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 42: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(732); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(723); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5701,13 +5689,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 43: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(734); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(728); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5716,13 +5704,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 44: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(736); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(730); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5731,13 +5719,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 45: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(738); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(732); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5746,13 +5734,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 46: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(740); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(734); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5761,13 +5749,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 47: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(742); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(736); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5776,13 +5764,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 48: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(744); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(738); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5791,13 +5779,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 49: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(746); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(740); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5806,13 +5794,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 50: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(748); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(742); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5821,13 +5809,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 51: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(749); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(744); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5836,13 +5824,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 52: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(750); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(746); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5851,13 +5839,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 53: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(751); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(747); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5866,13 +5854,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 54: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(752); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(748); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5881,13 +5869,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 55: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(729); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(749); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5896,13 +5884,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 56: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(753); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(750); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5911,13 +5899,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 57: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(754); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(727); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5926,13 +5914,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 58: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(731); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(751); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5941,13 +5929,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 59: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(733); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(752); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5956,13 +5944,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 60: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(735); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(729); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5971,13 +5959,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 61: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(737); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(731); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5986,13 +5974,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 62: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(739); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(733); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6001,13 +5989,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 63: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(741); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(735); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6016,13 +6004,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 64: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(743); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(737); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6031,13 +6019,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 65: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(745); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(739); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6046,13 +6034,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 66: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(747); - if (lookahead == '{') ADVANCE(722); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(741); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6061,13 +6049,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 67: - if (lookahead == '?') ADVANCE(759); - if (lookahead == '{') ADVANCE(756); - if (lookahead == '}') ADVANCE(757); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(743); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6076,85 +6064,106 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '@') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 68: - if (lookahead == '@') ADVANCE(71); - if (lookahead == '{') ADVANCE(87); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(745); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(68) + if (lookahead == '!' || + lookahead == '(' || + lookahead == ')' || + lookahead == '-' || + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); case 69: - if (lookahead == 'a') ADVANCE(82); + if (lookahead == '@') ADVANCE(72); + if (lookahead == '{') ADVANCE(88); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(69) END_STATE(); case 70: - if (lookahead == 'a') ADVANCE(85); + if (lookahead == 'a') ADVANCE(83); END_STATE(); case 71: - if (lookahead == 'c') ADVANCE(69); - if (lookahead == 'd') ADVANCE(74); - if (lookahead == 'e') ADVANCE(80); + if (lookahead == 'a') ADVANCE(86); END_STATE(); case 72: - if (lookahead == 'c') ADVANCE(77); + if (lookahead == 'c') ADVANCE(70); + if (lookahead == 'd') ADVANCE(75); + if (lookahead == 'e') ADVANCE(81); END_STATE(); case 73: - if (lookahead == 'd') ADVANCE(81); + if (lookahead == 'c') ADVANCE(78); END_STATE(); case 74: - if (lookahead == 'e') ADVANCE(76); + if (lookahead == 'd') ADVANCE(82); END_STATE(); case 75: - if (lookahead == 'e') ADVANCE(681); + if (lookahead == 'e') ADVANCE(77); END_STATE(); case 76: - if (lookahead == 'f') ADVANCE(70); + if (lookahead == 'e') ADVANCE(684); END_STATE(); case 77: - if (lookahead == 'h') ADVANCE(680); + if (lookahead == 'f') ADVANCE(71); END_STATE(); case 78: - if (lookahead == 'i') ADVANCE(84); + if (lookahead == 'h') ADVANCE(683); END_STATE(); case 79: - if (lookahead == 'l') ADVANCE(83); + if (lookahead == 'i') ADVANCE(85); END_STATE(); case 80: - if (lookahead == 'n') ADVANCE(73); + if (lookahead == 'l') ADVANCE(84); END_STATE(); case 81: - if (lookahead == 's') ADVANCE(86); + if (lookahead == 'n') ADVANCE(74); END_STATE(); case 82: - if (lookahead == 's') ADVANCE(75); + if (lookahead == 's') ADVANCE(87); END_STATE(); case 83: - if (lookahead == 't') ADVANCE(679); + if (lookahead == 's') ADVANCE(76); END_STATE(); case 84: - if (lookahead == 't') ADVANCE(72); + if (lookahead == 't') ADVANCE(682); END_STATE(); case 85: - if (lookahead == 'u') ADVANCE(79); + if (lookahead == 't') ADVANCE(73); END_STATE(); case 86: - if (lookahead == 'w') ADVANCE(78); + if (lookahead == 'u') ADVANCE(80); END_STATE(); case 87: - if (lookahead == '{') ADVANCE(35); + if (lookahead == 'w') ADVANCE(79); END_STATE(); case 88: - if (lookahead == '}') ADVANCE(95); + if (lookahead == '{') ADVANCE(36); END_STATE(); case 89: + if (lookahead == '}') ADVANCE(103); + END_STATE(); + case 90: + if (lookahead == '}') ADVANCE(98); + END_STATE(); + case 91: + if (lookahead == '}') ADVANCE(90); + END_STATE(); + case 92: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ' || - lookahead == '-') ADVANCE(89); + lookahead == '-') ADVANCE(92); if (lookahead != 0 && lookahead != '!' && lookahead != '(' && @@ -6162,6216 +6171,6608 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '?' && lookahead != '@' && lookahead != '{' && - lookahead != '}') ADVANCE(760); + lookahead != '}') ADVANCE(757); END_STATE(); - case 90: - if (eof) ADVANCE(92); - if (lookahead == '(') ADVANCE(698); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(726); - if (lookahead == '{') ADVANCE(722); + case 93: + if (eof) ADVANCE(95); + if (lookahead == '(') ADVANCE(701); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(724); + if (lookahead == '{') ADVANCE(720); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); + lookahead == '}') ADVANCE(718); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(90) - if (lookahead != 0) ADVANCE(760); + lookahead == ' ') SKIP(93) + if (lookahead != 0) ADVANCE(757); END_STATE(); - case 91: - if (eof) ADVANCE(92); - if (lookahead == '?') ADVANCE(759); - if (lookahead == '@') ADVANCE(726); - if (lookahead == '{') ADVANCE(722); + case 94: + if (eof) ADVANCE(95); + if (lookahead == '?') ADVANCE(757); + if (lookahead == '@') ADVANCE(724); + if (lookahead == '{') ADVANCE(720); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(91) + lookahead == ' ') SKIP(94) if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(758); - if (lookahead != 0) ADVANCE(760); + lookahead == '}') ADVANCE(718); + if (lookahead != 0) ADVANCE(757); END_STATE(); - case 92: + case 95: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 93: + case 96: ACCEPT_TOKEN(anon_sym_LBRACE_LBRACE_DASH_DASH); END_STATE(); - case 94: + case 97: ACCEPT_TOKEN(anon_sym_LBRACE_LBRACE_DASH_DASH); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(705); + lookahead != ')') ADVANCE(708); END_STATE(); - case 95: + case 98: ACCEPT_TOKEN(anon_sym_DASH_DASH_RBRACE_RBRACE); END_STATE(); - case 96: + case 99: ACCEPT_TOKEN(aux_sym_keyword_token1); END_STATE(); - case 97: + case 100: ACCEPT_TOKEN(anon_sym_LBRACE_LBRACE); - if (lookahead == '-') ADVANCE(36); + if (lookahead == '-') ADVANCE(37); END_STATE(); - case 98: + case 101: ACCEPT_TOKEN(anon_sym_RBRACE_RBRACE); END_STATE(); - case 99: + case 102: ACCEPT_TOKEN(anon_sym_LBRACE_BANG_BANG); END_STATE(); - case 100: + case 103: ACCEPT_TOKEN(anon_sym_BANG_BANG_RBRACE); END_STATE(); - case 101: + case 104: ACCEPT_TOKEN(anon_sym_ATphp); END_STATE(); - case 102: + case 105: ACCEPT_TOKEN(anon_sym_ATendphp); END_STATE(); - case 103: + case 106: ACCEPT_TOKEN(aux_sym_attribute_token1); END_STATE(); - case 104: + case 107: ACCEPT_TOKEN(aux_sym__inline_directive_token1); END_STATE(); - case 105: + case 108: ACCEPT_TOKEN(aux_sym__inline_directive_token1); - if (lookahead == 'F') ADVANCE(380); - if (lookahead == 'I') ADVANCE(332); - if (lookahead == 'U') ADVANCE(439); - if (lookahead == 'W') ADVANCE(362); + if (lookahead == 'F') ADVANCE(383); + if (lookahead == 'I') ADVANCE(335); + if (lookahead == 'U') ADVANCE(442); + if (lookahead == 'W') ADVANCE(365); END_STATE(); - case 106: + case 109: ACCEPT_TOKEN(aux_sym__inline_directive_token1); - if (lookahead == 'R') ADVANCE(300); + if (lookahead == 'R') ADVANCE(303); END_STATE(); - case 107: + case 110: ACCEPT_TOKEN(aux_sym__inline_directive_token1); - if (lookahead == 'S') ADVANCE(212); + if (lookahead == 'S') ADVANCE(215); END_STATE(); - case 108: + case 111: ACCEPT_TOKEN(anon_sym_ATfragment); END_STATE(); - case 109: + case 112: ACCEPT_TOKEN(anon_sym_ATendfragment); END_STATE(); - case 110: + case 113: ACCEPT_TOKEN(anon_sym_ATsection); - if (lookahead == 'M') ADVANCE(383); + if (lookahead == 'M') ADVANCE(386); END_STATE(); - case 111: + case 114: ACCEPT_TOKEN(anon_sym_ATendsection); END_STATE(); - case 112: + case 115: ACCEPT_TOKEN(anon_sym_ATonce); END_STATE(); - case 113: + case 116: ACCEPT_TOKEN(anon_sym_ATendonce); END_STATE(); - case 114: + case 117: ACCEPT_TOKEN(anon_sym_ATverbatim); END_STATE(); - case 115: + case 118: ACCEPT_TOKEN(anon_sym_ATendverbatim); END_STATE(); - case 116: + case 119: ACCEPT_TOKEN(anon_sym_ATpush); - if (lookahead == 'I') ADVANCE(333); - if (lookahead == 'O') ADVANCE(434); + if (lookahead == 'I') ADVANCE(336); + if (lookahead == 'O') ADVANCE(437); END_STATE(); - case 117: + case 120: ACCEPT_TOKEN(anon_sym_ATendpush); END_STATE(); - case 118: + case 121: ACCEPT_TOKEN(anon_sym_ATpushOnce); END_STATE(); - case 119: + case 122: ACCEPT_TOKEN(anon_sym_ATendPushOnce); END_STATE(); - case 120: + case 123: ACCEPT_TOKEN(anon_sym_ATpushIf); END_STATE(); - case 121: + case 124: ACCEPT_TOKEN(anon_sym_ATendPushIf); END_STATE(); - case 122: + case 125: ACCEPT_TOKEN(anon_sym_ATprepend); - if (lookahead == 'O') ADVANCE(435); + if (lookahead == 'O') ADVANCE(438); END_STATE(); - case 123: + case 126: ACCEPT_TOKEN(anon_sym_ATendprepend); END_STATE(); - case 124: + case 127: ACCEPT_TOKEN(anon_sym_ATprependOnce); END_STATE(); - case 125: + case 128: ACCEPT_TOKEN(anon_sym_ATendPrependOnce); END_STATE(); - case 126: + case 129: ACCEPT_TOKEN(anon_sym_ATelse); - if (lookahead == 'i') ADVANCE(127); + if (lookahead == 'i') ADVANCE(130); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(128); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); - case 127: + case 130: ACCEPT_TOKEN(aux_sym_conditional_keyword_token1); - if (lookahead == 'f') ADVANCE(128); + if (lookahead == 'f') ADVANCE(131); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(128); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); - case 128: + case 131: ACCEPT_TOKEN(aux_sym_conditional_keyword_token1); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(128); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); - case 129: + case 132: ACCEPT_TOKEN(anon_sym_ATif); END_STATE(); - case 130: + case 133: ACCEPT_TOKEN(anon_sym_ATendif); END_STATE(); - case 131: + case 134: ACCEPT_TOKEN(anon_sym_ATunless); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); - END_STATE(); - case 132: - ACCEPT_TOKEN(anon_sym_ATendunless); - END_STATE(); - case 133: - ACCEPT_TOKEN(anon_sym_ATisset); - END_STATE(); - case 134: - ACCEPT_TOKEN(anon_sym_ATendisset); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(152); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_ATempty); + ACCEPT_TOKEN(anon_sym_ATendunless); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_ATendempty); + ACCEPT_TOKEN(anon_sym_ATisset); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_ATauth); + ACCEPT_TOKEN(anon_sym_ATendisset); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_ATendauth); + ACCEPT_TOKEN(anon_sym_ATempty); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_ATguest); + ACCEPT_TOKEN(anon_sym_ATendempty); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_ATendguest); + ACCEPT_TOKEN(anon_sym_ATauth); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_ATproduction); + ACCEPT_TOKEN(anon_sym_ATendauth); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_ATendproduction); + ACCEPT_TOKEN(anon_sym_ATguest); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_ATenv); + ACCEPT_TOKEN(anon_sym_ATendguest); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_ATendenv); + ACCEPT_TOKEN(anon_sym_ATproduction); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_AThasSection); + ACCEPT_TOKEN(anon_sym_ATendproduction); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_ATsectionMissing); + ACCEPT_TOKEN(anon_sym_ATenv); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_ATerror); + ACCEPT_TOKEN(anon_sym_ATendenv); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_ATenderror); + ACCEPT_TOKEN(anon_sym_AThasSection); END_STATE(); case 149: - ACCEPT_TOKEN(aux_sym__custom_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); + ACCEPT_TOKEN(anon_sym_ATsectionMissing); END_STATE(); case 150: - ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'C') ADVANCE(451); - if (lookahead == 's') ADVANCE(96); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); - if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + ACCEPT_TOKEN(anon_sym_ATerror); END_STATE(); case 151: - ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'I') ADVANCE(335); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); - if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + ACCEPT_TOKEN(anon_sym_ATenderror); END_STATE(); case 152: - ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'O') ADVANCE(437); + ACCEPT_TOKEN(aux_sym__custom_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); - if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(152); END_STATE(); case 153: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'O') ADVANCE(438); + if (lookahead == 'C') ADVANCE(454); + if (lookahead == 's') ADVANCE(99); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 154: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'P') ADVANCE(656); - if (lookahead == 'a') ADVANCE(672); - if (lookahead == 'e') ADVANCE(636); - if (lookahead == 'f') ADVANCE(644); - if (lookahead == 'g') ADVANCE(674); - if (lookahead == 'i') ADVANCE(620); - if (lookahead == 'o') ADVANCE(639); - if (lookahead == 'p') ADVANCE(612); - if (lookahead == 's') ADVANCE(608); - if (lookahead == 't') ADVANCE(607); - if (lookahead == 'u') ADVANCE(643); - if (lookahead == 'v') ADVANCE(615); - if (lookahead == 'w') ADVANCE(625); + if (lookahead == 'I') ADVANCE(338); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 155: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'P') ADVANCE(572); + if (lookahead == 'O') ADVANCE(440); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 156: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'P') ADVANCE(573); + if (lookahead == 'O') ADVANCE(441); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 157: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'P') ADVANCE(498); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + if (lookahead == 'P') ADVANCE(659); + if (lookahead == 'a') ADVANCE(675); + if (lookahead == 'e') ADVANCE(639); + if (lookahead == 'f') ADVANCE(647); + if (lookahead == 'g') ADVANCE(677); + if (lookahead == 'i') ADVANCE(623); + if (lookahead == 'o') ADVANCE(642); + if (lookahead == 'p') ADVANCE(615); + if (lookahead == 's') ADVANCE(611); + if (lookahead == 't') ADVANCE(610); + if (lookahead == 'u') ADVANCE(646); + if (lookahead == 'v') ADVANCE(618); + if (lookahead == 'w') ADVANCE(628); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(680); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 158: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'R') ADVANCE(295); + if (lookahead == 'P') ADVANCE(575); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 159: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'S') ADVANCE(302); + if (lookahead == 'P') ADVANCE(576); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 160: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'l') ADVANCE(509); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(229); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'P') ADVANCE(501); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 161: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'l') ADVANCE(509); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(241); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'R') ADVANCE(298); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 162: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'l') ADVANCE(509); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(580); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'S') ADVANCE(305); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 163: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'l') ADVANCE(509); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(255); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'l') ADVANCE(512); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(232); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 164: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'l') ADVANCE(509); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(243); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'l') ADVANCE(512); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(244); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 165: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'l') ADVANCE(509); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(252); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'l') ADVANCE(512); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(583); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 166: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'l') ADVANCE(509); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(261); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'l') ADVANCE(512); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(258); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 167: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'l') ADVANCE(509); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(235); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'l') ADVANCE(512); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(246); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 168: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'l') ADVANCE(509); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(244); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'l') ADVANCE(512); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(255); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 169: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'l') ADVANCE(509); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(248); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'l') ADVANCE(512); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(264); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 170: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'l') ADVANCE(509); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(256); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'l') ADVANCE(512); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(238); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 171: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'l') ADVANCE(509); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(257); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'l') ADVANCE(512); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(247); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 172: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(580); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'l') ADVANCE(512); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(251); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 173: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(258); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'l') ADVANCE(512); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(259); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 174: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(253); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'l') ADVANCE(512); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(260); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 175: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(240); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(583); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 176: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(262); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(261); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 177: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(247); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(256); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 178: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(260); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(243); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 179: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(259); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(265); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 180: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(239); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(250); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 181: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(233); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(263); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 182: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(236); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(262); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 183: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(249); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(242); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 184: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(250); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(236); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 185: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(237); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(239); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 186: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(245); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(252); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 187: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(246); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(253); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 188: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(263); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(240); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 189: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'm') ADVANCE(461); - if (lookahead == 'n') ADVANCE(264); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 'x') ADVANCE(555); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(248); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 190: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(343); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(249); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 191: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(238); - if (lookahead == 'q') ADVANCE(570); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(266); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 192: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(390); + if (lookahead == 'a') ADVANCE(211); + if (lookahead == 'm') ADVANCE(464); + if (lookahead == 'n') ADVANCE(267); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'x') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 193: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(205); + if (lookahead == 'a') ADVANCE(346); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 194: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(500); + if (lookahead == 'a') ADVANCE(241); + if (lookahead == 'q') ADVANCE(573); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 195: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'a') ADVANCE(393); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 196: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(512); + if (lookahead == 'a') ADVANCE(208); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 197: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(216); + if (lookahead == 'a') ADVANCE(503); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 198: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(211); - if (lookahead == 'l') ADVANCE(524); + if (lookahead == 'a') ADVANCE(394); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 199: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(554); + if (lookahead == 'a') ADVANCE(515); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 200: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(557); + if (lookahead == 'a') ADVANCE(219); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 201: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(217); + if (lookahead == 'a') ADVANCE(214); + if (lookahead == 'l') ADVANCE(527); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 202: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(575); + if (lookahead == 'a') ADVANCE(557); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 203: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(346); + if (lookahead == 'a') ADVANCE(560); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 204: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'b') ADVANCE(199); + if (lookahead == 'a') ADVANCE(220); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 205: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'b') ADVANCE(400); + if (lookahead == 'a') ADVANCE(578); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 206: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'b') ADVANCE(200); + if (lookahead == 'a') ADVANCE(349); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 207: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(392); + if (lookahead == 'b') ADVANCE(202); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 208: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(349); + if (lookahead == 'b') ADVANCE(403); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 209: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(395); - if (lookahead == 'j') ADVANCE(292); + if (lookahead == 'b') ADVANCE(203); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 210: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(351); + if (lookahead == 'c') ADVANCE(395); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 211: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'c') ADVANCE(352); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 212: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(482); - if (lookahead == 't') ADVANCE(592); + if (lookahead == 'c') ADVANCE(398); + if (lookahead == 'j') ADVANCE(295); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 213: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'c') ADVANCE(354); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 214: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(354); + if (lookahead == 'c') ADVANCE(355); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 215: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(272); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 't') ADVANCE(595); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 216: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(540); + if (lookahead == 'c') ADVANCE(536); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 217: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'c') ADVANCE(357); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 218: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(280); + if (lookahead == 'c') ADVANCE(275); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 219: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(281); + if (lookahead == 'c') ADVANCE(543); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 220: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(282); + if (lookahead == 'c') ADVANCE(360); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 221: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'c') ADVANCE(283); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 222: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(286); + if (lookahead == 'c') ADVANCE(284); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 223: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(553); - if (lookahead == 'l') ADVANCE(297); + if (lookahead == 'c') ADVANCE(285); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 224: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(559); + if (lookahead == 'c') ADVANCE(286); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 225: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(562); + if (lookahead == 'c') ADVANCE(289); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 226: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(563); + if (lookahead == 'c') ADVANCE(556); + if (lookahead == 'l') ADVANCE(300); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 227: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(564); + if (lookahead == 'c') ADVANCE(562); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 228: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'c') ADVANCE(565); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 229: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(154); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'c') ADVANCE(566); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 230: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(104); + if (lookahead == 'c') ADVANCE(567); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 231: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(103); + if (lookahead == 'c') ADVANCE(568); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 232: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(122); + if (lookahead == 'd') ADVANCE(157); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 233: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(155); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(107); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 234: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(123); + if (lookahead == 'd') ADVANCE(106); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 235: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(125); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 236: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(586); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(158); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 237: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(157); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(126); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 238: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(444); + if (lookahead == 'd') ADVANCE(597); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 239: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(582); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(589); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 240: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(459); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(160); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 241: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(345); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(447); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 242: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(577); - if (lookahead == 'p') ADVANCE(502); + if (lookahead == 'd') ADVANCE(585); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 243: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(463); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(462); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 244: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(579); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 245: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(462); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(580); + if (lookahead == 'p') ADVANCE(505); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 246: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(472); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(466); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 247: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(337); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(582); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 248: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(202); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 249: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(336); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(475); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 250: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'd') ADVANCE(340); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 251: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(502); + if (lookahead == 'd') ADVANCE(205); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 252: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(371); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(339); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 253: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(528); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(343); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 254: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(277); + if (lookahead == 'd') ADVANCE(505); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 255: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(290); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(374); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 256: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(308); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(531); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 257: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(310); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(280); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 258: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(584); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(293); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 259: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(467); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(311); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 260: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(532); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(313); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 261: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(375); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(587); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 262: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(566); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(470); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 263: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(156); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(535); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 264: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(341); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'd') ADVANCE(378); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 265: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(153); + if (lookahead == 'd') ADVANCE(569); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 266: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(578); + if (lookahead == 'd') ADVANCE(159); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 267: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(191); + if (lookahead == 'd') ADVANCE(344); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 268: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(223); - if (lookahead == 't') ADVANCE(591); - if (lookahead == 'w') ADVANCE(370); + if (lookahead == 'd') ADVANCE(156); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 269: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(397); + if (lookahead == 'd') ADVANCE(581); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 270: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(126); + if (lookahead == 'e') ADVANCE(194); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 271: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(585); + if (lookahead == 'e') ADVANCE(226); + if (lookahead == 't') ADVANCE(594); + if (lookahead == 'w') ADVANCE(373); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 272: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(112); + if (lookahead == 'e') ADVANCE(400); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 273: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(106); + if (lookahead == 'e') ADVANCE(129); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 274: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(103); + if (lookahead == 'e') ADVANCE(588); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 275: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(690); + if (lookahead == 'e') ADVANCE(115); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 276: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(688); + if (lookahead == 'e') ADVANCE(109); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 277: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(105); + if (lookahead == 'e') ADVANCE(106); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 278: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(683); + if (lookahead == 'e') ADVANCE(693); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 279: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(107); + if (lookahead == 'e') ADVANCE(691); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 280: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(118); + if (lookahead == 'e') ADVANCE(108); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 281: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(124); + if (lookahead == 'e') ADVANCE(686); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 282: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(113); + if (lookahead == 'e') ADVANCE(110); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 283: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(119); + if (lookahead == 'e') ADVANCE(121); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 284: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(691); + if (lookahead == 'e') ADVANCE(127); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 285: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(689); + if (lookahead == 'e') ADVANCE(116); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 286: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(125); + if (lookahead == 'e') ADVANCE(122); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 287: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(192); + if (lookahead == 'e') ADVANCE(694); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 288: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(207); + if (lookahead == 'e') ADVANCE(692); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 289: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(466); - if (lookahead == 'o') ADVANCE(242); + if (lookahead == 'e') ADVANCE(128); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 290: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(412); + if (lookahead == 'e') ADVANCE(195); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 291: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(424); + if (lookahead == 'e') ADVANCE(210); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 292: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(213); + if (lookahead == 'e') ADVANCE(469); + if (lookahead == 'o') ADVANCE(245); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 293: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(468); + if (lookahead == 'e') ADVANCE(415); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 294: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(393); + if (lookahead == 'e') ADVANCE(427); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 295: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(339); + if (lookahead == 'e') ADVANCE(216); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 296: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(481); - if (lookahead == 'h') ADVANCE(460); - if (lookahead == 'r') ADVANCE(289); - if (lookahead == 'u') ADVANCE(507); + if (lookahead == 'e') ADVANCE(471); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 297: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(224); + if (lookahead == 'e') ADVANCE(396); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 298: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(231); + if (lookahead == 'e') ADVANCE(342); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 299: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(476); - if (lookahead == 'i') ADVANCE(558); - if (lookahead == 'o') ADVANCE(396); + if (lookahead == 'e') ADVANCE(484); + if (lookahead == 'h') ADVANCE(463); + if (lookahead == 'r') ADVANCE(292); + if (lookahead == 'u') ADVANCE(510); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 300: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(197); + if (lookahead == 'e') ADVANCE(227); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 301: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(427); + if (lookahead == 'e') ADVANCE(234); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 302: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(225); + if (lookahead == 'e') ADVANCE(479); + if (lookahead == 'i') ADVANCE(561); + if (lookahead == 'o') ADVANCE(399); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 303: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(405); + if (lookahead == 'e') ADVANCE(200); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 304: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(195); + if (lookahead == 'e') ADVANCE(430); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 305: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(508); + if (lookahead == 'e') ADVANCE(228); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 306: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(536); + if (lookahead == 'e') ADVANCE(408); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 307: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(201); + if (lookahead == 'e') ADVANCE(198); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 308: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(493); + if (lookahead == 'e') ADVANCE(511); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 309: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(414); + if (lookahead == 'e') ADVANCE(539); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 310: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(423); + if (lookahead == 'e') ADVANCE(204); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 311: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(501); + if (lookahead == 'e') ADVANCE(496); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 312: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(510); + if (lookahead == 'e') ADVANCE(417); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 313: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(543); + if (lookahead == 'e') ADVANCE(426); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 314: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(521); + if (lookahead == 'e') ADVANCE(504); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 315: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(550); + if (lookahead == 'e') ADVANCE(513); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 316: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(430); + if (lookahead == 'e') ADVANCE(546); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 317: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(428); + if (lookahead == 'e') ADVANCE(524); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 318: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(517); + if (lookahead == 'e') ADVANCE(553); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 319: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(431); + if (lookahead == 'e') ADVANCE(433); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 320: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(429); + if (lookahead == 'e') ADVANCE(431); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 321: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(514); + if (lookahead == 'e') ADVANCE(520); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 322: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(522); + if (lookahead == 'e') ADVANCE(434); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 323: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(469); + if (lookahead == 'e') ADVANCE(432); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 324: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(471); + if (lookahead == 'e') ADVANCE(517); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 325: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(470); + if (lookahead == 'e') ADVANCE(525); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 326: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(406); + if (lookahead == 'e') ADVANCE(472); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 327: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(496); + if (lookahead == 'e') ADVANCE(474); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 328: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(497); + if (lookahead == 'e') ADVANCE(473); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 329: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(228); + if (lookahead == 'e') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 330: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(129); - if (lookahead == 'n') ADVANCE(209); - if (lookahead == 's') ADVANCE(527); + if (lookahead == 'e') ADVANCE(499); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 331: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(96); + if (lookahead == 'e') ADVANCE(500); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 332: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(104); + if (lookahead == 'e') ADVANCE(231); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 333: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(120); + if (lookahead == 'f') ADVANCE(132); + if (lookahead == 'n') ADVANCE(212); + if (lookahead == 's') ADVANCE(530); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 334: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(130); + if (lookahead == 'f') ADVANCE(99); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 335: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(121); + if (lookahead == 'f') ADVANCE(107); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 336: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(457); + if (lookahead == 'f') ADVANCE(123); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 337: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(499); + if (lookahead == 'f') ADVANCE(133); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 338: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(367); + if (lookahead == 'f') ADVANCE(124); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 339: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(495); + if (lookahead == 'f') ADVANCE(460); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 340: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(452); + if (lookahead == 'f') ADVANCE(502); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 341: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(458); + if (lookahead == 'f') ADVANCE(370); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 342: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'g') ADVANCE(96); + if (lookahead == 'f') ADVANCE(498); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 343: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'g') ADVANCE(411); + if (lookahead == 'f') ADVANCE(455); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 344: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'g') ADVANCE(146); + if (lookahead == 'f') ADVANCE(461); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 345: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'g') ADVANCE(576); + if (lookahead == 'g') ADVANCE(99); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 346: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'g') ADVANCE(413); + if (lookahead == 'g') ADVANCE(414); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 347: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(137); + if (lookahead == 'g') ADVANCE(149); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 348: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(96); + if (lookahead == 'g') ADVANCE(579); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 349: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(104); + if (lookahead == 'g') ADVANCE(416); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 350: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(116); + if (lookahead == 'h') ADVANCE(140); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 351: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(678); + if (lookahead == 'h') ADVANCE(99); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 352: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(686); + if (lookahead == 'h') ADVANCE(107); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 353: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(138); + if (lookahead == 'h') ADVANCE(119); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 354: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(680); + if (lookahead == 'h') ADVANCE(681); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 355: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(117); + if (lookahead == 'h') ADVANCE(689); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 356: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(152); + if (lookahead == 'h') ADVANCE(141); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 357: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(687); + if (lookahead == 'h') ADVANCE(683); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 358: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(151); + if (lookahead == 'h') ADVANCE(120); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 359: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(441); + if (lookahead == 'h') ADVANCE(155); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 360: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(384); + if (lookahead == 'h') ADVANCE(690); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 361: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(288); - if (lookahead == 'l') ADVANCE(196); - if (lookahead == 'o') ADVANCE(422); - if (lookahead == 's') ADVANCE(473); + if (lookahead == 'h') ADVANCE(154); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 362: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(309); + if (lookahead == 'h') ADVANCE(444); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 363: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(386); + if (lookahead == 'h') ADVANCE(387); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 364: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(506); + if (lookahead == 'h') ADVANCE(291); + if (lookahead == 'l') ADVANCE(199); + if (lookahead == 'o') ADVANCE(425); + if (lookahead == 's') ADVANCE(476); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 365: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(583); + if (lookahead == 'h') ADVANCE(312); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 366: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(409); + if (lookahead == 'h') ADVANCE(389); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 367: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(342); + if (lookahead == 'i') ADVANCE(509); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 368: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(410); + if (lookahead == 'i') ADVANCE(586); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 369: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(433); + if (lookahead == 'i') ADVANCE(412); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 370: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(560); + if (lookahead == 'i') ADVANCE(345); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 371: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'i') ADVANCE(413); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 372: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(294); + if (lookahead == 'i') ADVANCE(436); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 373: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(513); + if (lookahead == 'i') ADVANCE(563); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 374: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(421); + if (lookahead == 'i') ADVANCE(337); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 375: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(531); + if (lookahead == 'i') ADVANCE(297); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 376: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(523); + if (lookahead == 'i') ADVANCE(516); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 377: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'i') ADVANCE(424); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 378: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(464); + if (lookahead == 'i') ADVANCE(534); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 379: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(447); + if (lookahead == 'i') ADVANCE(526); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 380: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(484); + if (lookahead == 'i') ADVANCE(489); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 381: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(487); + if (lookahead == 'i') ADVANCE(467); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 382: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(448); + if (lookahead == 'i') ADVANCE(450); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 383: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(519); + if (lookahead == 'i') ADVANCE(487); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 384: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(399); + if (lookahead == 'i') ADVANCE(490); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 385: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(449); + if (lookahead == 'i') ADVANCE(451); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 386: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(402); + if (lookahead == 'i') ADVANCE(522); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 387: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(453); + if (lookahead == 'i') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 388: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(454); + if (lookahead == 'i') ADVANCE(452); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 389: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(561); + if (lookahead == 'i') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 390: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'k') ADVANCE(682); + if (lookahead == 'i') ADVANCE(456); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 391: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'k') ADVANCE(683); + if (lookahead == 'i') ADVANCE(457); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 392: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'k') ADVANCE(298); + if (lookahead == 'i') ADVANCE(564); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 393: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(230); + if (lookahead == 'k') ADVANCE(685); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 394: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(588); + if (lookahead == 'k') ADVANCE(686); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 395: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(568); + if (lookahead == 'k') ADVANCE(301); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 396: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(534); + if (lookahead == 'l') ADVANCE(233); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 397: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(293); + if (lookahead == 'l') ADVANCE(591); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 398: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(274); + if (lookahead == 'l') ADVANCE(571); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 399: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(275); + if (lookahead == 'l') ADVANCE(537); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 400: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(298); + if (lookahead == 'l') ADVANCE(296); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 401: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(547); + if (lookahead == 'l') ADVANCE(277); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 402: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(284); + if (lookahead == 'l') ADVANCE(278); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 403: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(318); + if (lookahead == 'l') ADVANCE(301); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 404: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(311); + if (lookahead == 'l') ADVANCE(550); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 405: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(525); + if (lookahead == 'l') ADVANCE(287); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 406: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(324); + if (lookahead == 'l') ADVANCE(321); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 407: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(321); + if (lookahead == 'l') ADVANCE(314); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 408: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(322); + if (lookahead == 'l') ADVANCE(528); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 409: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'm') ADVANCE(114); + if (lookahead == 'l') ADVANCE(327); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 410: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'm') ADVANCE(115); + if (lookahead == 'l') ADVANCE(324); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 411: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'm') ADVANCE(316); + if (lookahead == 'l') ADVANCE(325); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 412: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'm') ADVANCE(465); + if (lookahead == 'm') ADVANCE(117); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 413: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'm') ADVANCE(319); + if (lookahead == 'm') ADVANCE(118); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 414: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(104); + if (lookahead == 'm') ADVANCE(319); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 415: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(110); + if (lookahead == 'm') ADVANCE(468); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 416: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(145); + if (lookahead == 'm') ADVANCE(322); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 417: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(141); + if (lookahead == 'n') ADVANCE(107); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 418: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(142); + if (lookahead == 'n') ADVANCE(113); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 419: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(111); + if (lookahead == 'n') ADVANCE(148); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 420: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(215); + if (lookahead == 'n') ADVANCE(144); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 421: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(344); + if (lookahead == 'n') ADVANCE(145); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 422: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(552); + if (lookahead == 'n') ADVANCE(114); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 423: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(581); + if (lookahead == 'n') ADVANCE(218); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 424: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(251); + if (lookahead == 'n') ADVANCE(347); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 425: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(394); + if (lookahead == 'n') ADVANCE(555); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 426: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(338); + if (lookahead == 'n') ADVANCE(584); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 427: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(232); + if (lookahead == 'n') ADVANCE(254); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 428: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(234); + if (lookahead == 'n') ADVANCE(397); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 429: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(265); + if (lookahead == 'n') ADVANCE(341); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 430: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(538); + if (lookahead == 'n') ADVANCE(235); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 431: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(545); + if (lookahead == 'n') ADVANCE(237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 432: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(403); + if (lookahead == 'n') ADVANCE(268); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 433: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(574); + if (lookahead == 'n') ADVANCE(541); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 434: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(218); + if (lookahead == 'n') ADVANCE(548); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 435: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(219); + if (lookahead == 'n') ADVANCE(406); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 436: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(220); + if (lookahead == 'n') ADVANCE(577); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 437: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'n') ADVANCE(221); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 438: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'n') ADVANCE(222); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 439: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(407); + if (lookahead == 'n') ADVANCE(223); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 440: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(408); + if (lookahead == 'n') ADVANCE(224); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 441: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(230); + if (lookahead == 'n') ADVANCE(225); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 442: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(475); - if (lookahead == 'r') ADVANCE(190); + if (lookahead == 'n') ADVANCE(410); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 443: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(477); + if (lookahead == 'n') ADVANCE(411); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 444: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(425); + if (lookahead == 'o') ADVANCE(233); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 445: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(266); + if (lookahead == 'o') ADVANCE(478); + if (lookahead == 'r') ADVANCE(193); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 446: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(483); + if (lookahead == 'o') ADVANCE(480); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 447: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(415); + if (lookahead == 'o') ADVANCE(428); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 448: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(416); + if (lookahead == 'o') ADVANCE(269); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 449: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(417); + if (lookahead == 'o') ADVANCE(486); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 450: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(478); + if (lookahead == 'o') ADVANCE(418); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 451: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(426); + if (lookahead == 'o') ADVANCE(419); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 452: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(479); + if (lookahead == 'o') ADVANCE(420); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 453: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(418); + if (lookahead == 'o') ADVANCE(481); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 454: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(419); + if (lookahead == 'o') ADVANCE(429); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 455: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(401); + if (lookahead == 'o') ADVANCE(482); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 456: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(485); + if (lookahead == 'o') ADVANCE(421); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 457: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(490); + if (lookahead == 'o') ADVANCE(422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 458: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(491); + if (lookahead == 'o') ADVANCE(404); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 459: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(436); + if (lookahead == 'o') ADVANCE(488); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 460: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(101); + if (lookahead == 'o') ADVANCE(493); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 461: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(549); + if (lookahead == 'o') ADVANCE(494); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 462: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(571); + if (lookahead == 'o') ADVANCE(439); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 463: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(492); + if (lookahead == 'p') ADVANCE(104); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 464: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(541); + if (lookahead == 'p') ADVANCE(552); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 465: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(551); + if (lookahead == 'p') ADVANCE(574); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 466: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(301); + if (lookahead == 'p') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 467: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(327); + if (lookahead == 'p') ADVANCE(544); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 468: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(446); + if (lookahead == 'p') ADVANCE(554); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 469: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(317); + if (lookahead == 'p') ADVANCE(304); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 470: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(320); + if (lookahead == 'p') ADVANCE(330); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 471: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(456); + if (lookahead == 'p') ADVANCE(449); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 472: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(489); + if (lookahead == 'p') ADVANCE(320); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 473: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(331); + if (lookahead == 'p') ADVANCE(323); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 474: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(443); + if (lookahead == 'p') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 475: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(684); + if (lookahead == 'p') ADVANCE(492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 476: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(204); + if (lookahead == 'r') ADVANCE(334); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 477: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(147); + if (lookahead == 'r') ADVANCE(446); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 478: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(148); + if (lookahead == 'r') ADVANCE(687); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 479: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(685); + if (lookahead == 'r') ADVANCE(207); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 480: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(287); + if (lookahead == 'r') ADVANCE(150); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 481: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(526); + if (lookahead == 'r') ADVANCE(151); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 482: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(378); + if (lookahead == 'r') ADVANCE(688); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 483: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(539); + if (lookahead == 'r') ADVANCE(290); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 484: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'r') ADVANCE(529); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 485: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(544); + if (lookahead == 'r') ADVANCE(381); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 486: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(298); + if (lookahead == 'r') ADVANCE(542); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 487: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(279); + if (lookahead == 'r') ADVANCE(514); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 488: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(304); + if (lookahead == 'r') ADVANCE(547); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 489: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(323); + if (lookahead == 'r') ADVANCE(301); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 490: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(303); + if (lookahead == 'r') ADVANCE(282); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 491: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'r') ADVANCE(307); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 492: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(445); + if (lookahead == 'r') ADVANCE(326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 493: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(494); + if (lookahead == 'r') ADVANCE(306); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 494: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(450); + if (lookahead == 'r') ADVANCE(310); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 495: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(312); + if (lookahead == 'r') ADVANCE(448); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 496: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(530); + if (lookahead == 'r') ADVANCE(497); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 497: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(206); + if (lookahead == 'r') ADVANCE(453); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 498: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(325); + if (lookahead == 'r') ADVANCE(315); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 499: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(203); + if (lookahead == 'r') ADVANCE(533); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 500: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(159); + if (lookahead == 'r') ADVANCE(209); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 501: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(96); + if (lookahead == 'r') ADVANCE(328); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 502: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(104); + if (lookahead == 'r') ADVANCE(206); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 503: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(103); + if (lookahead == 's') ADVANCE(162); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 504: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(131); + if (lookahead == 's') ADVANCE(99); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 505: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(132); + if (lookahead == 's') ADVANCE(107); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 506: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(193); + if (lookahead == 's') ADVANCE(106); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 507: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(350); + if (lookahead == 's') ADVANCE(134); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 508: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(535); + if (lookahead == 's') ADVANCE(135); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 509: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(270); + if (lookahead == 's') ADVANCE(196); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 510: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(348); + if (lookahead == 's') ADVANCE(353); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 511: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(533); + if (lookahead == 's') ADVANCE(538); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 512: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(503); + if (lookahead == 's') ADVANCE(273); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 513: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(537); + if (lookahead == 's') ADVANCE(351); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 514: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(502); + if (lookahead == 's') ADVANCE(536); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 515: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(374); + if (lookahead == 's') ADVANCE(506); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 516: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(355); + if (lookahead == 's') ADVANCE(540); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 517: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(504); + if (lookahead == 's') ADVANCE(505); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 518: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(356); + if (lookahead == 's') ADVANCE(377); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 519: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(515); + if (lookahead == 's') ADVANCE(358); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 520: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(358); + if (lookahead == 's') ADVANCE(507); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 521: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(542); + if (lookahead == 's') ADVANCE(359); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 522: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(505); + if (lookahead == 's') ADVANCE(518); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 523: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(546); + if (lookahead == 's') ADVANCE(361); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 524: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(276); + if (lookahead == 's') ADVANCE(545); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 525: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(285); + if (lookahead == 's') ADVANCE(508); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 526: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(373); + if (lookahead == 's') ADVANCE(549); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 527: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(306); + if (lookahead == 's') ADVANCE(279); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 528: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(587); + if (lookahead == 's') ADVANCE(288); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 529: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(313); + if (lookahead == 's') ADVANCE(376); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 530: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(376); + if (lookahead == 's') ADVANCE(309); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 531: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(529); + if (lookahead == 's') ADVANCE(590); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 532: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(329); + if (lookahead == 's') ADVANCE(316); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 533: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(104); + if (lookahead == 's') ADVANCE(379); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 534: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(696); + if (lookahead == 's') ADVANCE(532); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 535: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(139); + if (lookahead == 's') ADVANCE(332); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 536: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(133); + if (lookahead == 't') ADVANCE(107); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 537: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(692); + if (lookahead == 't') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 538: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(108); + if (lookahead == 't') ADVANCE(142); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 539: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(694); + if (lookahead == 't') ADVANCE(136); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 540: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(158); + if (lookahead == 't') ADVANCE(695); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 541: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(150); + if (lookahead == 't') ADVANCE(111); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 542: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(140); + if (lookahead == 't') ADVANCE(697); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 543: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(134); + if (lookahead == 't') ADVANCE(161); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 544: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(695); + if (lookahead == 't') ADVANCE(153); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 545: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(109); + if (lookahead == 't') ADVANCE(143); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 546: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(693); + if (lookahead == 't') ADVANCE(137); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 547: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(697); + if (lookahead == 't') ADVANCE(698); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 548: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(347); + if (lookahead == 't') ADVANCE(112); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 549: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(589); + if (lookahead == 't') ADVANCE(696); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 550: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(359); + if (lookahead == 't') ADVANCE(700); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 551: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(590); + if (lookahead == 't') ADVANCE(350); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 552: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(369); + if (lookahead == 't') ADVANCE(592); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 553: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(379); + if (lookahead == 't') ADVANCE(362); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 554: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(366); + if (lookahead == 't') ADVANCE(593); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 555: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(291); + if (lookahead == 't') ADVANCE(372); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 556: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(353); + if (lookahead == 't') ADVANCE(382); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 557: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(368); + if (lookahead == 't') ADVANCE(369); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 558: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(273); + if (lookahead == 't') ADVANCE(294); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 559: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(298); + if (lookahead == 't') ADVANCE(356); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 560: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(210); + if (lookahead == 't') ADVANCE(371); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 561: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(214); + if (lookahead == 't') ADVANCE(276); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 562: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(382); + if (lookahead == 't') ADVANCE(301); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 563: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(385); + if (lookahead == 't') ADVANCE(213); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 564: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(387); + if (lookahead == 't') ADVANCE(217); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 565: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(388); + if (lookahead == 't') ADVANCE(385); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 566: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(326); + if (lookahead == 't') ADVANCE(388); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 567: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(548); + if (lookahead == 't') ADVANCE(390); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 568: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(254); + if (lookahead == 't') ADVANCE(391); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 569: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(305); + if (lookahead == 't') ADVANCE(329); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 570: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(377); + if (lookahead == 'u') ADVANCE(551); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 571: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(516); + if (lookahead == 'u') ADVANCE(257); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 572: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(518); + if (lookahead == 'u') ADVANCE(308); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 573: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(520); + if (lookahead == 'u') ADVANCE(380); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 574: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(278); + if (lookahead == 'u') ADVANCE(519); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 575: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(556); + if (lookahead == 'u') ADVANCE(521); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 576: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(314); + if (lookahead == 'u') ADVANCE(523); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 577: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(226); + if (lookahead == 'u') ADVANCE(281); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 578: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(227); + if (lookahead == 'u') ADVANCE(559); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 579: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(440); + if (lookahead == 'u') ADVANCE(317); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 580: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'v') ADVANCE(143); + if (lookahead == 'u') ADVANCE(229); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 581: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'v') ADVANCE(144); + if (lookahead == 'u') ADVANCE(230); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 582: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'v') ADVANCE(455); + if (lookahead == 'u') ADVANCE(443); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 583: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'v') ADVANCE(271); + if (lookahead == 'v') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 584: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'v') ADVANCE(328); + if (lookahead == 'v') ADVANCE(147); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 585: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'w') ADVANCE(381); + if (lookahead == 'v') ADVANCE(458); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 586: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'v') ADVANCE(274); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 587: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'v') ADVANCE(331); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 588: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(103); + if (lookahead == 'w') ADVANCE(384); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 589: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(135); + if (lookahead == 'w') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 590: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(136); + if (lookahead == 'w') ADVANCE(392); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 591: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(398); + if (lookahead == 'y') ADVANCE(106); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 592: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(404); + if (lookahead == 'y') ADVANCE(138); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 593: ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'y') ADVANCE(139); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 594: ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'y') ADVANCE(401); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 595: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'I') ADVANCE(621); - if (lookahead == 'O') ADVANCE(639); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'y') ADVANCE(407); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 596: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'O') ADVANCE(639); + ACCEPT_TOKEN(aux_sym__custom_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 597: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'a') ADVANCE(622); + ACCEPT_TOKEN(aux_sym__custom_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 598: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'a') ADVANCE(671); + if (lookahead == 'I') ADVANCE(624); + if (lookahead == 'O') ADVANCE(642); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 599: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'b') ADVANCE(598); + if (lookahead == 'O') ADVANCE(642); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 600: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'c') ADVANCE(623); + if (lookahead == 'a') ADVANCE(625); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 601: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'c') ADVANCE(670); + if (lookahead == 'a') ADVANCE(674); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 602: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'c') ADVANCE(606); + if (lookahead == 'b') ADVANCE(601); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 603: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'd') ADVANCE(677); + if (lookahead == 'c') ADVANCE(626); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 604: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'd') ADVANCE(596); + if (lookahead == 'c') ADVANCE(673); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 605: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'd') ADVANCE(673); + if (lookahead == 'c') ADVANCE(609); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 606: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(677); + if (lookahead == 'd') ADVANCE(680); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 607: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(633); + if (lookahead == 'd') ADVANCE(599); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 608: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(601); - if (lookahead == 'w') ADVANCE(629); + if (lookahead == 'd') ADVANCE(676); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 609: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(640); + if (lookahead == 'e') ADVANCE(680); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 610: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(664); + if (lookahead == 'e') ADVANCE(636); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 611: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(650); + if (lookahead == 'e') ADVANCE(604); + if (lookahead == 'w') ADVANCE(632); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 612: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(657); - if (lookahead == 'h') ADVANCE(648); - if (lookahead == 'r') ADVANCE(619); - if (lookahead == 'u') ADVANCE(661); + if (lookahead == 'e') ADVANCE(643); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 613: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(641); + if (lookahead == 'e') ADVANCE(667); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 614: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(652); + if (lookahead == 'e') ADVANCE(653); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 615: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(655); - if (lookahead == 'o') ADVANCE(632); + if (lookahead == 'e') ADVANCE(660); + if (lookahead == 'h') ADVANCE(651); + if (lookahead == 'r') ADVANCE(622); + if (lookahead == 'u') ADVANCE(664); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 616: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(642); + if (lookahead == 'e') ADVANCE(644); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 617: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(665); + if (lookahead == 'e') ADVANCE(655); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 618: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(666); + if (lookahead == 'e') ADVANCE(658); + if (lookahead == 'o') ADVANCE(635); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 619: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(651); - if (lookahead == 'o') ADVANCE(605); + if (lookahead == 'e') ADVANCE(645); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 620: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'f') ADVANCE(677); - if (lookahead == 's') ADVANCE(663); + if (lookahead == 'e') ADVANCE(668); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 621: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'f') ADVANCE(677); + if (lookahead == 'e') ADVANCE(669); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 622: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'g') ADVANCE(637); + if (lookahead == 'e') ADVANCE(654); + if (lookahead == 'o') ADVANCE(608); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 623: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'h') ADVANCE(677); + if (lookahead == 'f') ADVANCE(680); + if (lookahead == 's') ADVANCE(666); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 624: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'h') ADVANCE(595); + if (lookahead == 'f') ADVANCE(680); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 625: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'h') ADVANCE(630); + if (lookahead == 'g') ADVANCE(640); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 626: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'i') ADVANCE(647); + if (lookahead == 'h') ADVANCE(680); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 627: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'i') ADVANCE(635); + if (lookahead == 'h') ADVANCE(598); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 628: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'i') ADVANCE(664); + if (lookahead == 'h') ADVANCE(633); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 629: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'i') ADVANCE(669); + if (lookahead == 'i') ADVANCE(650); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 630: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'i') ADVANCE(631); + if (lookahead == 'i') ADVANCE(638); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 631: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'l') ADVANCE(606); + if (lookahead == 'i') ADVANCE(667); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 632: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'l') ADVANCE(666); + if (lookahead == 'i') ADVANCE(672); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 633: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'l') ADVANCE(614); + if (lookahead == 'i') ADVANCE(634); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 634: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'l') ADVANCE(617); + if (lookahead == 'l') ADVANCE(609); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 635: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'm') ADVANCE(677); + if (lookahead == 'l') ADVANCE(669); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 636: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'm') ADVANCE(649); - if (lookahead == 'n') ADVANCE(675); - if (lookahead == 'r') ADVANCE(654); + if (lookahead == 'l') ADVANCE(617); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 637: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'm') ADVANCE(616); + if (lookahead == 'l') ADVANCE(620); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 638: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(677); + if (lookahead == 'm') ADVANCE(680); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 639: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'm') ADVANCE(652); + if (lookahead == 'n') ADVANCE(678); + if (lookahead == 'r') ADVANCE(657); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 640: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(604); + if (lookahead == 'm') ADVANCE(619); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 641: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(603); + if (lookahead == 'n') ADVANCE(680); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 642: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(666); + if (lookahead == 'n') ADVANCE(605); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 643: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(634); + if (lookahead == 'n') ADVANCE(607); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 644: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'o') ADVANCE(653); - if (lookahead == 'r') ADVANCE(597); + if (lookahead == 'n') ADVANCE(606); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 645: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'o') ADVANCE(653); + if (lookahead == 'n') ADVANCE(669); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 646: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'o') ADVANCE(658); + if (lookahead == 'n') ADVANCE(637); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 647: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'o') ADVANCE(638); + if (lookahead == 'o') ADVANCE(656); + if (lookahead == 'r') ADVANCE(600); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 648: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'p') ADVANCE(677); + if (lookahead == 'o') ADVANCE(656); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 649: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'p') ADVANCE(667); + if (lookahead == 'o') ADVANCE(661); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 650: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'p') ADVANCE(609); + if (lookahead == 'o') ADVANCE(641); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 651: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'p') ADVANCE(613); + if (lookahead == 'p') ADVANCE(680); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 652: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'p') ADVANCE(646); + if (lookahead == 'p') ADVANCE(670); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 653: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(677); + if (lookahead == 'p') ADVANCE(612); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 654: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(645); + if (lookahead == 'p') ADVANCE(616); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 655: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(599); + if (lookahead == 'p') ADVANCE(649); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 656: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(611); - if (lookahead == 'u') ADVANCE(660); + if (lookahead == 'r') ADVANCE(680); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 657: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(662); + if (lookahead == 'r') ADVANCE(648); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 658: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(666); + if (lookahead == 'r') ADVANCE(602); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 659: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(677); + if (lookahead == 'r') ADVANCE(614); + if (lookahead == 'u') ADVANCE(663); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 660: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(624); + if (lookahead == 'r') ADVANCE(665); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 661: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(623); + if (lookahead == 'r') ADVANCE(669); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 662: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(628); + if (lookahead == 's') ADVANCE(680); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 663: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(618); + if (lookahead == 's') ADVANCE(627); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 664: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(666); + if (lookahead == 's') ADVANCE(626); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 665: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(659); + if (lookahead == 's') ADVANCE(631); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 666: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(677); + if (lookahead == 's') ADVANCE(621); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 667: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(676); + if (lookahead == 's') ADVANCE(669); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 668: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(623); + if (lookahead == 's') ADVANCE(662); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 669: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(600); + if (lookahead == 't') ADVANCE(680); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 670: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(626); + if (lookahead == 't') ADVANCE(679); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 671: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(627); + if (lookahead == 't') ADVANCE(626); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 672: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'u') ADVANCE(668); + if (lookahead == 't') ADVANCE(603); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 673: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'u') ADVANCE(601); + if (lookahead == 't') ADVANCE(629); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 674: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'u') ADVANCE(610); + if (lookahead == 't') ADVANCE(630); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 675: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'v') ADVANCE(677); + if (lookahead == 'u') ADVANCE(671); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 676: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'y') ADVANCE(677); + if (lookahead == 'u') ADVANCE(604); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 677: ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'u') ADVANCE(613); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 678: - ACCEPT_TOKEN(anon_sym_ATswitch); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'v') ADVANCE(680); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 679: - ACCEPT_TOKEN(anon_sym_ATdefault); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'y') ADVANCE(680); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 680: - ACCEPT_TOKEN(anon_sym_ATendswitch); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); END_STATE(); case 681: - ACCEPT_TOKEN(anon_sym_ATcase); + ACCEPT_TOKEN(anon_sym_ATswitch); END_STATE(); case 682: - ACCEPT_TOKEN(anon_sym_ATbreak); + ACCEPT_TOKEN(anon_sym_ATdefault); END_STATE(); case 683: - ACCEPT_TOKEN(aux_sym_loop_operator_token1); + ACCEPT_TOKEN(anon_sym_ATendswitch); END_STATE(); case 684: - ACCEPT_TOKEN(anon_sym_ATfor); - if (lookahead == 'e') ADVANCE(198); + ACCEPT_TOKEN(anon_sym_ATcase); END_STATE(); case 685: - ACCEPT_TOKEN(anon_sym_ATendfor); + ACCEPT_TOKEN(anon_sym_ATbreak); END_STATE(); case 686: - ACCEPT_TOKEN(anon_sym_ATforeach); + ACCEPT_TOKEN(aux_sym_loop_operator_token1); END_STATE(); case 687: - ACCEPT_TOKEN(anon_sym_ATendforeach); + ACCEPT_TOKEN(anon_sym_ATfor); + if (lookahead == 'e') ADVANCE(201); END_STATE(); case 688: - ACCEPT_TOKEN(anon_sym_ATforelse); + ACCEPT_TOKEN(anon_sym_ATendfor); END_STATE(); case 689: - ACCEPT_TOKEN(anon_sym_ATendforelse); + ACCEPT_TOKEN(anon_sym_ATforeach); END_STATE(); case 690: - ACCEPT_TOKEN(anon_sym_ATwhile); + ACCEPT_TOKEN(anon_sym_ATendforeach); END_STATE(); case 691: - ACCEPT_TOKEN(anon_sym_ATendwhile); + ACCEPT_TOKEN(anon_sym_ATforelse); END_STATE(); case 692: - ACCEPT_TOKEN(anon_sym_ATpersist); + ACCEPT_TOKEN(anon_sym_ATendforelse); END_STATE(); case 693: - ACCEPT_TOKEN(anon_sym_ATendpersist); + ACCEPT_TOKEN(anon_sym_ATwhile); END_STATE(); case 694: - ACCEPT_TOKEN(anon_sym_ATteleport); + ACCEPT_TOKEN(anon_sym_ATendwhile); END_STATE(); case 695: - ACCEPT_TOKEN(anon_sym_ATendteleport); + ACCEPT_TOKEN(anon_sym_ATpersist); END_STATE(); case 696: - ACCEPT_TOKEN(anon_sym_ATvolt); + ACCEPT_TOKEN(anon_sym_ATendpersist); END_STATE(); case 697: - ACCEPT_TOKEN(anon_sym_ATendvolt); + ACCEPT_TOKEN(anon_sym_ATteleport); END_STATE(); case 698: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_ATendteleport); END_STATE(); case 699: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_ATvolt); END_STATE(); case 700: - ACCEPT_TOKEN(aux_sym_parameter_token1); - if (lookahead == ')') ADVANCE(699); - if (lookahead == '{') ADVANCE(704); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(700); - if (lookahead != 0 && - lookahead != '(') ADVANCE(705); + ACCEPT_TOKEN(anon_sym_ATendvolt); END_STATE(); case 701: - ACCEPT_TOKEN(aux_sym_parameter_token1); - if (lookahead == '-') ADVANCE(94); - if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(705); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 702: - ACCEPT_TOKEN(aux_sym_parameter_token1); - if (lookahead == '-') ADVANCE(701); - if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(705); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 703: ACCEPT_TOKEN(aux_sym_parameter_token1); - if (lookahead == '{') ADVANCE(704); + if (lookahead == ')') ADVANCE(702); + if (lookahead == '{') ADVANCE(707); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(703); if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(705); + lookahead != '(') ADVANCE(708); END_STATE(); case 704: ACCEPT_TOKEN(aux_sym_parameter_token1); - if (lookahead == '{') ADVANCE(702); + if (lookahead == '-') ADVANCE(97); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(705); + lookahead != ')') ADVANCE(708); END_STATE(); case 705: ACCEPT_TOKEN(aux_sym_parameter_token1); + if (lookahead == '-') ADVANCE(704); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(705); + lookahead != ')') ADVANCE(708); END_STATE(); case 706: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(aux_sym_parameter_token1); + if (lookahead == '{') ADVANCE(707); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(706); + if (lookahead != 0 && + lookahead != '(' && + lookahead != ')') ADVANCE(708); END_STATE(); case 707: - ACCEPT_TOKEN(anon_sym_RPAREN2); + ACCEPT_TOKEN(aux_sym_parameter_token1); + if (lookahead == '{') ADVANCE(705); + if (lookahead != 0 && + lookahead != '(' && + lookahead != ')') ADVANCE(708); END_STATE(); case 708: - ACCEPT_TOKEN(aux_sym_text_token1); + ACCEPT_TOKEN(aux_sym_parameter_token1); + if (lookahead != 0 && + lookahead != '(' && + lookahead != ')') ADVANCE(708); END_STATE(); case 709: - ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == '!') ADVANCE(99); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 710: - ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == '-') ADVANCE(36); + ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); case 711: ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == 'd') ADVANCE(714); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(720); - if (lookahead != 0 && - lookahead != '(') ADVANCE(708); END_STATE(); case 712: ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == 'h') ADVANCE(715); + if (lookahead == 'd') ADVANCE(715); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(720); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(717); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 713: ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == 'n') ADVANCE(711); + if (lookahead == 'h') ADVANCE(716); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(720); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(717); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 714: ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == 'p') ADVANCE(712); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(720); - if (lookahead != 0 && - lookahead != '(') ADVANCE(708); - END_STATE(); - case 715: - ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == 'p') ADVANCE(102); + if (lookahead == 'n') ADVANCE(712); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(720); - if (lookahead != 0 && - lookahead != '(') ADVANCE(708); - END_STATE(); - case 716: - ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == '}') ADVANCE(100); - END_STATE(); - case 717: - ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == '}') ADVANCE(88); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(717); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); - case 718: + case 715: ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == '-') ADVANCE(719); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '?' || - lookahead == '@' || - lookahead == '{' || - lookahead == '}') ADVANCE(708); + if (lookahead == 'p') ADVANCE(713); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(718); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(717); if (lookahead != 0 && - lookahead != '(') ADVANCE(719); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); - case 719: + case 716: ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == '-') ADVANCE(89); + if (lookahead == 'p') ADVANCE(105); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(717); if (lookahead != 0 && - lookahead != '!' && lookahead != '(' && - lookahead != ')' && - lookahead != '?' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(760); + lookahead != '-') ADVANCE(711); END_STATE(); - case 720: + case 717: ACCEPT_TOKEN(aux_sym_text_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(720); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(717); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); + END_STATE(); + case 718: + ACCEPT_TOKEN(aux_sym_text_token2); + END_STATE(); + case 719: + ACCEPT_TOKEN(aux_sym_text_token2); + if (lookahead == '!') ADVANCE(89); + END_STATE(); + case 720: + ACCEPT_TOKEN(aux_sym_text_token2); + if (lookahead == '!') ADVANCE(2); + if (lookahead == '{') ADVANCE(100); END_STATE(); case 721: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '!') ADVANCE(716); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(720); - if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + if (lookahead == '-') ADVANCE(91); END_STATE(); case 722: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '!') ADVANCE(709); - if (lookahead == '{') ADVANCE(97); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(483); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(163); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(720); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 723: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '-') ADVANCE(717); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(483); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(175); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(720); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 724: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(480); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(160); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(175); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 725: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(480); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(172); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(165); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 726: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(172); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(176); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 727: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(162); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(164); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 728: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(173); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(177); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 729: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(161); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(166); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 730: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(174); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(178); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 731: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(163); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(167); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 732: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(175); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(179); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 733: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(164); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(168); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 734: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(176); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(180); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 735: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(165); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(169); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 736: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(177); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(181); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 737: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(166); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(173); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 738: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(178); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(182); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 739: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); if (lookahead == 'e') ADVANCE(170); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 740: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(179); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(183); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 741: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(167); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(171); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 742: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(180); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(189); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 743: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(168); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(174); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 744: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(186); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(184); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 745: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(171); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(172); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 746: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(181); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(190); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 747: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(169); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(185); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 748: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(187); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(186); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 749: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(182); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(187); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 750: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(183); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(188); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 751: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(184); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(191); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 752: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(185); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'b') ADVANCE(491); + if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'e') ADVANCE(192); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'h') ADVANCE(197); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'm') ADVANCE(318); + if (lookahead == 'o') ADVANCE(423); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); + if (lookahead == 'u') ADVANCE(435); + if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'w') ADVANCE(363); + if (lookahead == 'y') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 753: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(188); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); + if (lookahead == 'e') ADVANCE(714); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(717); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 754: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'b') ADVANCE(488); - if (lookahead == 'c') ADVANCE(361); - if (lookahead == 'd') ADVANCE(364); - if (lookahead == 'e') ADVANCE(189); - if (lookahead == 'f') ADVANCE(442); - if (lookahead == 'g') ADVANCE(569); - if (lookahead == 'h') ADVANCE(194); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(365); - if (lookahead == 'm') ADVANCE(315); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == 'p') ADVANCE(296); - if (lookahead == 'r') ADVANCE(267); - if (lookahead == 's') ADVANCE(268); - if (lookahead == 't') ADVANCE(269); - if (lookahead == 'u') ADVANCE(432); - if (lookahead == 'v') ADVANCE(299); - if (lookahead == 'w') ADVANCE(360); - if (lookahead == 'y') ADVANCE(372); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(593); - if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + if (lookahead == '{') ADVANCE(36); END_STATE(); case 755: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'e') ADVANCE(713); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(720); - if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + if (lookahead == '}') ADVANCE(101); END_STATE(); case 756: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '{') ADVANCE(710); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(720); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(717); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(' && + lookahead != '-') ADVANCE(711); END_STATE(); case 757: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '}') ADVANCE(98); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(720); - if (lookahead != 0 && - lookahead != '(') ADVANCE(708); - END_STATE(); - case 758: - ACCEPT_TOKEN(aux_sym_text_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(720); - if (lookahead != 0 && - lookahead != '(') ADVANCE(708); - END_STATE(); - case 759: - ACCEPT_TOKEN(aux_sym_text_token3); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == '-') ADVANCE(719); - if (lookahead == '!' || - lookahead == ')' || - lookahead == '?' || - lookahead == '@' || - lookahead == '{' || - lookahead == '}') ADVANCE(708); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(718); - if (lookahead != 0 && - lookahead != '(') ADVANCE(719); - END_STATE(); - case 760: ACCEPT_TOKEN(aux_sym_text_token3); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ' || - lookahead == '-') ADVANCE(89); + lookahead == '-') ADVANCE(92); if (lookahead != 0 && lookahead != '!' && lookahead != '(' && @@ -12379,7 +12780,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '?' && lookahead != '@' && lookahead != '{' && - lookahead != '}') ADVANCE(760); + lookahead != '}') ADVANCE(757); END_STATE(); default: return false; @@ -12388,3989 +12789,3989 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 91}, - [2] = {.lex_state = 4}, - [3] = {.lex_state = 4}, - [4] = {.lex_state = 4}, - [5] = {.lex_state = 4}, - [6] = {.lex_state = 4}, - [7] = {.lex_state = 4}, - [8] = {.lex_state = 4}, - [9] = {.lex_state = 4}, - [10] = {.lex_state = 4}, - [11] = {.lex_state = 4}, - [12] = {.lex_state = 4}, - [13] = {.lex_state = 4}, - [14] = {.lex_state = 4}, - [15] = {.lex_state = 4}, - [16] = {.lex_state = 4}, - [17] = {.lex_state = 4}, - [18] = {.lex_state = 4}, - [19] = {.lex_state = 4}, - [20] = {.lex_state = 4}, - [21] = {.lex_state = 4}, - [22] = {.lex_state = 4}, - [23] = {.lex_state = 4}, - [24] = {.lex_state = 4}, - [25] = {.lex_state = 4}, - [26] = {.lex_state = 4}, - [27] = {.lex_state = 4}, - [28] = {.lex_state = 4}, - [29] = {.lex_state = 4}, - [30] = {.lex_state = 4}, - [31] = {.lex_state = 4}, - [32] = {.lex_state = 4}, - [33] = {.lex_state = 4}, - [34] = {.lex_state = 4}, - [35] = {.lex_state = 4}, - [36] = {.lex_state = 4}, - [37] = {.lex_state = 4}, - [38] = {.lex_state = 4}, - [39] = {.lex_state = 4}, - [40] = {.lex_state = 4}, - [41] = {.lex_state = 4}, - [42] = {.lex_state = 4}, - [43] = {.lex_state = 4}, - [44] = {.lex_state = 4}, - [45] = {.lex_state = 4}, - [46] = {.lex_state = 4}, - [47] = {.lex_state = 4}, - [48] = {.lex_state = 4}, - [49] = {.lex_state = 4}, - [50] = {.lex_state = 4}, - [51] = {.lex_state = 4}, - [52] = {.lex_state = 4}, - [53] = {.lex_state = 4}, - [54] = {.lex_state = 4}, - [55] = {.lex_state = 4}, - [56] = {.lex_state = 4}, - [57] = {.lex_state = 4}, - [58] = {.lex_state = 4}, - [59] = {.lex_state = 4}, - [60] = {.lex_state = 55}, - [61] = {.lex_state = 55}, - [62] = {.lex_state = 58}, - [63] = {.lex_state = 59}, - [64] = {.lex_state = 59}, - [65] = {.lex_state = 59}, - [66] = {.lex_state = 60}, - [67] = {.lex_state = 59}, - [68] = {.lex_state = 61}, - [69] = {.lex_state = 59}, - [70] = {.lex_state = 59}, - [71] = {.lex_state = 61}, - [72] = {.lex_state = 59}, - [73] = {.lex_state = 62}, - [74] = {.lex_state = 63}, - [75] = {.lex_state = 59}, - [76] = {.lex_state = 58}, - [77] = {.lex_state = 64}, - [78] = {.lex_state = 59}, - [79] = {.lex_state = 65}, - [80] = {.lex_state = 60}, - [81] = {.lex_state = 65}, - [82] = {.lex_state = 59}, - [83] = {.lex_state = 65}, - [84] = {.lex_state = 59}, - [85] = {.lex_state = 59}, - [86] = {.lex_state = 59}, - [87] = {.lex_state = 61}, - [88] = {.lex_state = 59}, - [89] = {.lex_state = 66}, - [90] = {.lex_state = 63}, - [91] = {.lex_state = 59}, - [92] = {.lex_state = 59}, - [93] = {.lex_state = 62}, - [94] = {.lex_state = 62}, - [95] = {.lex_state = 66}, - [96] = {.lex_state = 58}, - [97] = {.lex_state = 59}, - [98] = {.lex_state = 66}, - [99] = {.lex_state = 59}, - [100] = {.lex_state = 59}, - [101] = {.lex_state = 60}, - [102] = {.lex_state = 59}, - [103] = {.lex_state = 59}, - [104] = {.lex_state = 64}, - [105] = {.lex_state = 59}, - [106] = {.lex_state = 63}, - [107] = {.lex_state = 59}, - [108] = {.lex_state = 59}, - [109] = {.lex_state = 59}, - [110] = {.lex_state = 55}, - [111] = {.lex_state = 59}, - [112] = {.lex_state = 64}, - [113] = {.lex_state = 59}, - [114] = {.lex_state = 59}, - [115] = {.lex_state = 59}, - [116] = {.lex_state = 59}, - [117] = {.lex_state = 39}, - [118] = {.lex_state = 39}, - [119] = {.lex_state = 39}, - [120] = {.lex_state = 39}, - [121] = {.lex_state = 39}, - [122] = {.lex_state = 39}, - [123] = {.lex_state = 39}, - [124] = {.lex_state = 39}, - [125] = {.lex_state = 39}, - [126] = {.lex_state = 39}, - [127] = {.lex_state = 39}, - [128] = {.lex_state = 39}, - [129] = {.lex_state = 39}, - [130] = {.lex_state = 39}, - [131] = {.lex_state = 39}, - [132] = {.lex_state = 39}, - [133] = {.lex_state = 39}, - [134] = {.lex_state = 39}, - [135] = {.lex_state = 39}, - [136] = {.lex_state = 39}, - [137] = {.lex_state = 39}, - [138] = {.lex_state = 39}, - [139] = {.lex_state = 39}, - [140] = {.lex_state = 39}, - [141] = {.lex_state = 39}, - [142] = {.lex_state = 39}, - [143] = {.lex_state = 39}, - [144] = {.lex_state = 39}, - [145] = {.lex_state = 39}, - [146] = {.lex_state = 39}, - [147] = {.lex_state = 39}, - [148] = {.lex_state = 38}, - [149] = {.lex_state = 38}, - [150] = {.lex_state = 41}, - [151] = {.lex_state = 41}, - [152] = {.lex_state = 41}, - [153] = {.lex_state = 41}, - [154] = {.lex_state = 42}, - [155] = {.lex_state = 38}, - [156] = {.lex_state = 41}, - [157] = {.lex_state = 41}, - [158] = {.lex_state = 41}, - [159] = {.lex_state = 38}, - [160] = {.lex_state = 41}, - [161] = {.lex_state = 42}, - [162] = {.lex_state = 41}, - [163] = {.lex_state = 41}, - [164] = {.lex_state = 41}, - [165] = {.lex_state = 41}, - [166] = {.lex_state = 38}, - [167] = {.lex_state = 42}, - [168] = {.lex_state = 42}, - [169] = {.lex_state = 42}, - [170] = {.lex_state = 38}, - [171] = {.lex_state = 41}, - [172] = {.lex_state = 41}, - [173] = {.lex_state = 38}, - [174] = {.lex_state = 41}, - [175] = {.lex_state = 42}, - [176] = {.lex_state = 43}, - [177] = {.lex_state = 41}, - [178] = {.lex_state = 42}, - [179] = {.lex_state = 38}, - [180] = {.lex_state = 44}, - [181] = {.lex_state = 41}, - [182] = {.lex_state = 41}, - [183] = {.lex_state = 41}, - [184] = {.lex_state = 41}, - [185] = {.lex_state = 38}, - [186] = {.lex_state = 42}, - [187] = {.lex_state = 42}, - [188] = {.lex_state = 38}, - [189] = {.lex_state = 38}, - [190] = {.lex_state = 42}, - [191] = {.lex_state = 38}, - [192] = {.lex_state = 41}, - [193] = {.lex_state = 41}, - [194] = {.lex_state = 41}, - [195] = {.lex_state = 45}, - [196] = {.lex_state = 41}, - [197] = {.lex_state = 42}, - [198] = {.lex_state = 38}, - [199] = {.lex_state = 42}, - [200] = {.lex_state = 40}, - [201] = {.lex_state = 41}, - [202] = {.lex_state = 40}, - [203] = {.lex_state = 38}, - [204] = {.lex_state = 42}, - [205] = {.lex_state = 41}, - [206] = {.lex_state = 41}, - [207] = {.lex_state = 41}, - [208] = {.lex_state = 41}, - [209] = {.lex_state = 41}, - [210] = {.lex_state = 41}, - [211] = {.lex_state = 42}, - [212] = {.lex_state = 41}, - [213] = {.lex_state = 41}, - [214] = {.lex_state = 42}, - [215] = {.lex_state = 38}, - [216] = {.lex_state = 45}, - [217] = {.lex_state = 41}, - [218] = {.lex_state = 42}, - [219] = {.lex_state = 38}, - [220] = {.lex_state = 38}, - [221] = {.lex_state = 41}, - [222] = {.lex_state = 41}, - [223] = {.lex_state = 41}, - [224] = {.lex_state = 41}, - [225] = {.lex_state = 41}, - [226] = {.lex_state = 38}, - [227] = {.lex_state = 38}, - [228] = {.lex_state = 42}, - [229] = {.lex_state = 42}, - [230] = {.lex_state = 38}, - [231] = {.lex_state = 41}, - [232] = {.lex_state = 38}, - [233] = {.lex_state = 42}, - [234] = {.lex_state = 41}, - [235] = {.lex_state = 42}, - [236] = {.lex_state = 41}, - [237] = {.lex_state = 41}, - [238] = {.lex_state = 41}, - [239] = {.lex_state = 41}, - [240] = {.lex_state = 42}, - [241] = {.lex_state = 38}, - [242] = {.lex_state = 38}, - [243] = {.lex_state = 41}, - [244] = {.lex_state = 41}, - [245] = {.lex_state = 41}, - [246] = {.lex_state = 41}, - [247] = {.lex_state = 42}, - [248] = {.lex_state = 38}, - [249] = {.lex_state = 41}, - [250] = {.lex_state = 42}, - [251] = {.lex_state = 91}, - [252] = {.lex_state = 38}, - [253] = {.lex_state = 41}, - [254] = {.lex_state = 41}, - [255] = {.lex_state = 46}, - [256] = {.lex_state = 41}, - [257] = {.lex_state = 41}, - [258] = {.lex_state = 41}, - [259] = {.lex_state = 47}, - [260] = {.lex_state = 38}, - [261] = {.lex_state = 41}, - [262] = {.lex_state = 41}, - [263] = {.lex_state = 38}, - [264] = {.lex_state = 42}, - [265] = {.lex_state = 42}, - [266] = {.lex_state = 38}, - [267] = {.lex_state = 38}, - [268] = {.lex_state = 42}, - [269] = {.lex_state = 41}, - [270] = {.lex_state = 41}, - [271] = {.lex_state = 47}, - [272] = {.lex_state = 41}, - [273] = {.lex_state = 42}, - [274] = {.lex_state = 41}, - [275] = {.lex_state = 38}, - [276] = {.lex_state = 38}, - [277] = {.lex_state = 48}, - [278] = {.lex_state = 41}, - [279] = {.lex_state = 41}, - [280] = {.lex_state = 41}, - [281] = {.lex_state = 41}, - [282] = {.lex_state = 41}, - [283] = {.lex_state = 38}, - [284] = {.lex_state = 41}, - [285] = {.lex_state = 41}, - [286] = {.lex_state = 42}, - [287] = {.lex_state = 38}, - [288] = {.lex_state = 42}, - [289] = {.lex_state = 42}, - [290] = {.lex_state = 38}, - [291] = {.lex_state = 42}, - [292] = {.lex_state = 48}, - [293] = {.lex_state = 41}, - [294] = {.lex_state = 41}, - [295] = {.lex_state = 44}, - [296] = {.lex_state = 41}, - [297] = {.lex_state = 41}, - [298] = {.lex_state = 42}, - [299] = {.lex_state = 38}, - [300] = {.lex_state = 42}, - [301] = {.lex_state = 38}, - [302] = {.lex_state = 38}, - [303] = {.lex_state = 42}, - [304] = {.lex_state = 42}, - [305] = {.lex_state = 42}, - [306] = {.lex_state = 41}, - [307] = {.lex_state = 38}, - [308] = {.lex_state = 41}, - [309] = {.lex_state = 44}, - [310] = {.lex_state = 41}, - [311] = {.lex_state = 38}, - [312] = {.lex_state = 41}, - [313] = {.lex_state = 42}, - [314] = {.lex_state = 41}, - [315] = {.lex_state = 41}, - [316] = {.lex_state = 41}, - [317] = {.lex_state = 41}, - [318] = {.lex_state = 42}, - [319] = {.lex_state = 38}, - [320] = {.lex_state = 41}, - [321] = {.lex_state = 42}, - [322] = {.lex_state = 42}, - [323] = {.lex_state = 38}, - [324] = {.lex_state = 38}, - [325] = {.lex_state = 41}, - [326] = {.lex_state = 41}, - [327] = {.lex_state = 41}, - [328] = {.lex_state = 41}, - [329] = {.lex_state = 42}, - [330] = {.lex_state = 49}, - [331] = {.lex_state = 50}, - [332] = {.lex_state = 41}, - [333] = {.lex_state = 51}, - [334] = {.lex_state = 43}, - [335] = {.lex_state = 43}, - [336] = {.lex_state = 47}, - [337] = {.lex_state = 41}, - [338] = {.lex_state = 41}, - [339] = {.lex_state = 41}, - [340] = {.lex_state = 52}, - [341] = {.lex_state = 46}, - [342] = {.lex_state = 46}, - [343] = {.lex_state = 41}, - [344] = {.lex_state = 40}, - [345] = {.lex_state = 50}, - [346] = {.lex_state = 41}, - [347] = {.lex_state = 42}, - [348] = {.lex_state = 49}, - [349] = {.lex_state = 57}, - [350] = {.lex_state = 42}, - [351] = {.lex_state = 42}, - [352] = {.lex_state = 42}, - [353] = {.lex_state = 51}, - [354] = {.lex_state = 41}, - [355] = {.lex_state = 51}, - [356] = {.lex_state = 38}, - [357] = {.lex_state = 53}, - [358] = {.lex_state = 41}, - [359] = {.lex_state = 38}, - [360] = {.lex_state = 41}, - [361] = {.lex_state = 52}, - [362] = {.lex_state = 49}, - [363] = {.lex_state = 41}, - [364] = {.lex_state = 52}, - [365] = {.lex_state = 45}, - [366] = {.lex_state = 41}, - [367] = {.lex_state = 41}, - [368] = {.lex_state = 54}, - [369] = {.lex_state = 57}, - [370] = {.lex_state = 38}, - [371] = {.lex_state = 41}, - [372] = {.lex_state = 54}, - [373] = {.lex_state = 41}, - [374] = {.lex_state = 57}, - [375] = {.lex_state = 42}, - [376] = {.lex_state = 41}, - [377] = {.lex_state = 50}, - [378] = {.lex_state = 53}, - [379] = {.lex_state = 38}, - [380] = {.lex_state = 38}, - [381] = {.lex_state = 38}, - [382] = {.lex_state = 42}, - [383] = {.lex_state = 41}, - [384] = {.lex_state = 53}, - [385] = {.lex_state = 42}, - [386] = {.lex_state = 38}, - [387] = {.lex_state = 42}, - [388] = {.lex_state = 42}, - [389] = {.lex_state = 38}, - [390] = {.lex_state = 48}, - [391] = {.lex_state = 41}, - [392] = {.lex_state = 41}, - [393] = {.lex_state = 41}, - [394] = {.lex_state = 42}, - [395] = {.lex_state = 42}, - [396] = {.lex_state = 38}, - [397] = {.lex_state = 41}, - [398] = {.lex_state = 38}, - [399] = {.lex_state = 42}, - [400] = {.lex_state = 54}, - [401] = {.lex_state = 56}, - [402] = {.lex_state = 42}, - [403] = {.lex_state = 42}, - [404] = {.lex_state = 38}, - [405] = {.lex_state = 38}, - [406] = {.lex_state = 42}, - [407] = {.lex_state = 41}, - [408] = {.lex_state = 41}, - [409] = {.lex_state = 41}, - [410] = {.lex_state = 41}, - [411] = {.lex_state = 41}, - [412] = {.lex_state = 42}, - [413] = {.lex_state = 38}, - [414] = {.lex_state = 38}, - [415] = {.lex_state = 42}, - [416] = {.lex_state = 38}, - [417] = {.lex_state = 41}, - [418] = {.lex_state = 56}, - [419] = {.lex_state = 42}, - [420] = {.lex_state = 38}, - [421] = {.lex_state = 41}, - [422] = {.lex_state = 91}, - [423] = {.lex_state = 41}, - [424] = {.lex_state = 56}, - [425] = {.lex_state = 41}, - [426] = {.lex_state = 41}, - [427] = {.lex_state = 41}, - [428] = {.lex_state = 41}, - [429] = {.lex_state = 38}, - [430] = {.lex_state = 26}, - [431] = {.lex_state = 30}, - [432] = {.lex_state = 24}, - [433] = {.lex_state = 20}, - [434] = {.lex_state = 27}, - [435] = {.lex_state = 29}, - [436] = {.lex_state = 28}, - [437] = {.lex_state = 31}, - [438] = {.lex_state = 23}, - [439] = {.lex_state = 25}, - [440] = {.lex_state = 26}, - [441] = {.lex_state = 24}, - [442] = {.lex_state = 23}, - [443] = {.lex_state = 29}, - [444] = {.lex_state = 30}, - [445] = {.lex_state = 20}, - [446] = {.lex_state = 31}, - [447] = {.lex_state = 27}, - [448] = {.lex_state = 28}, - [449] = {.lex_state = 25}, - [450] = {.lex_state = 26}, - [451] = {.lex_state = 28}, - [452] = {.lex_state = 27}, - [453] = {.lex_state = 31}, - [454] = {.lex_state = 25}, - [455] = {.lex_state = 30}, - [456] = {.lex_state = 29}, - [457] = {.lex_state = 24}, - [458] = {.lex_state = 20}, - [459] = {.lex_state = 23}, - [460] = {.lex_state = 17}, - [461] = {.lex_state = 21}, - [462] = {.lex_state = 15}, - [463] = {.lex_state = 90}, - [464] = {.lex_state = 19}, - [465] = {.lex_state = 14}, - [466] = {.lex_state = 13}, - [467] = {.lex_state = 18}, - [468] = {.lex_state = 22}, - [469] = {.lex_state = 16}, - [470] = {.lex_state = 11}, - [471] = {.lex_state = 9}, - [472] = {.lex_state = 8}, - [473] = {.lex_state = 12}, - [474] = {.lex_state = 3}, - [475] = {.lex_state = 6}, - [476] = {.lex_state = 10}, - [477] = {.lex_state = 5}, - [478] = {.lex_state = 7}, - [479] = {.lex_state = 66}, - [480] = {.lex_state = 63}, - [481] = {.lex_state = 59}, - [482] = {.lex_state = 59}, - [483] = {.lex_state = 59}, - [484] = {.lex_state = 59}, - [485] = {.lex_state = 59}, - [486] = {.lex_state = 59}, - [487] = {.lex_state = 59}, - [488] = {.lex_state = 55}, - [489] = {.lex_state = 59}, - [490] = {.lex_state = 55}, - [491] = {.lex_state = 59}, - [492] = {.lex_state = 55}, - [493] = {.lex_state = 61}, - [494] = {.lex_state = 55}, - [495] = {.lex_state = 58}, - [496] = {.lex_state = 59}, - [497] = {.lex_state = 59}, - [498] = {.lex_state = 59}, - [499] = {.lex_state = 55}, - [500] = {.lex_state = 59}, - [501] = {.lex_state = 59}, - [502] = {.lex_state = 55}, - [503] = {.lex_state = 59}, - [504] = {.lex_state = 59}, - [505] = {.lex_state = 55}, - [506] = {.lex_state = 59}, - [507] = {.lex_state = 59}, - [508] = {.lex_state = 59}, - [509] = {.lex_state = 59}, - [510] = {.lex_state = 59}, - [511] = {.lex_state = 59}, - [512] = {.lex_state = 59}, - [513] = {.lex_state = 55}, - [514] = {.lex_state = 59}, - [515] = {.lex_state = 59}, - [516] = {.lex_state = 59}, - [517] = {.lex_state = 61}, - [518] = {.lex_state = 59}, - [519] = {.lex_state = 55}, - [520] = {.lex_state = 59}, - [521] = {.lex_state = 59}, - [522] = {.lex_state = 59}, - [523] = {.lex_state = 59}, - [524] = {.lex_state = 59}, - [525] = {.lex_state = 59}, - [526] = {.lex_state = 59}, - [527] = {.lex_state = 59}, - [528] = {.lex_state = 59}, - [529] = {.lex_state = 59}, - [530] = {.lex_state = 59}, - [531] = {.lex_state = 59}, - [532] = {.lex_state = 59}, - [533] = {.lex_state = 59}, - [534] = {.lex_state = 59}, - [535] = {.lex_state = 59}, - [536] = {.lex_state = 59}, - [537] = {.lex_state = 59}, - [538] = {.lex_state = 59}, - [539] = {.lex_state = 55}, - [540] = {.lex_state = 55}, - [541] = {.lex_state = 9}, - [542] = {.lex_state = 55}, - [543] = {.lex_state = 59}, - [544] = {.lex_state = 59}, - [545] = {.lex_state = 59}, - [546] = {.lex_state = 59}, - [547] = {.lex_state = 59}, - [548] = {.lex_state = 59}, - [549] = {.lex_state = 64}, - [550] = {.lex_state = 59}, - [551] = {.lex_state = 55}, - [552] = {.lex_state = 55}, - [553] = {.lex_state = 55}, - [554] = {.lex_state = 55}, - [555] = {.lex_state = 55}, - [556] = {.lex_state = 55}, - [557] = {.lex_state = 55}, - [558] = {.lex_state = 55}, - [559] = {.lex_state = 64}, - [560] = {.lex_state = 55}, - [561] = {.lex_state = 55}, - [562] = {.lex_state = 55}, - [563] = {.lex_state = 58}, - [564] = {.lex_state = 55}, - [565] = {.lex_state = 65}, - [566] = {.lex_state = 55}, - [567] = {.lex_state = 55}, - [568] = {.lex_state = 55}, - [569] = {.lex_state = 55}, - [570] = {.lex_state = 55}, - [571] = {.lex_state = 55}, - [572] = {.lex_state = 55}, - [573] = {.lex_state = 90}, - [574] = {.lex_state = 55}, - [575] = {.lex_state = 55}, - [576] = {.lex_state = 55}, - [577] = {.lex_state = 55}, - [578] = {.lex_state = 55}, - [579] = {.lex_state = 55}, - [580] = {.lex_state = 61}, - [581] = {.lex_state = 64}, - [582] = {.lex_state = 55}, - [583] = {.lex_state = 55}, - [584] = {.lex_state = 66}, - [585] = {.lex_state = 55}, - [586] = {.lex_state = 55}, - [587] = {.lex_state = 58}, - [588] = {.lex_state = 55}, - [589] = {.lex_state = 55}, - [590] = {.lex_state = 55}, - [591] = {.lex_state = 55}, - [592] = {.lex_state = 55}, - [593] = {.lex_state = 55}, - [594] = {.lex_state = 55}, - [595] = {.lex_state = 55}, - [596] = {.lex_state = 55}, - [597] = {.lex_state = 55}, - [598] = {.lex_state = 55}, - [599] = {.lex_state = 55}, - [600] = {.lex_state = 55}, - [601] = {.lex_state = 66}, - [602] = {.lex_state = 66}, - [603] = {.lex_state = 66}, - [604] = {.lex_state = 66}, - [605] = {.lex_state = 66}, - [606] = {.lex_state = 59}, - [607] = {.lex_state = 59}, - [608] = {.lex_state = 5}, - [609] = {.lex_state = 66}, - [610] = {.lex_state = 66}, - [611] = {.lex_state = 10}, - [612] = {.lex_state = 66}, - [613] = {.lex_state = 55}, - [614] = {.lex_state = 55}, - [615] = {.lex_state = 6}, - [616] = {.lex_state = 66}, - [617] = {.lex_state = 66}, - [618] = {.lex_state = 66}, - [619] = {.lex_state = 12}, - [620] = {.lex_state = 66}, - [621] = {.lex_state = 8}, - [622] = {.lex_state = 66}, - [623] = {.lex_state = 11}, - [624] = {.lex_state = 66}, - [625] = {.lex_state = 63}, - [626] = {.lex_state = 16}, - [627] = {.lex_state = 66}, - [628] = {.lex_state = 66}, - [629] = {.lex_state = 62}, - [630] = {.lex_state = 17}, - [631] = {.lex_state = 66}, - [632] = {.lex_state = 65}, - [633] = {.lex_state = 66}, - [634] = {.lex_state = 62}, - [635] = {.lex_state = 65}, - [636] = {.lex_state = 22}, - [637] = {.lex_state = 66}, - [638] = {.lex_state = 58}, - [639] = {.lex_state = 18}, - [640] = {.lex_state = 66}, - [641] = {.lex_state = 66}, - [642] = {.lex_state = 63}, - [643] = {.lex_state = 63}, - [644] = {.lex_state = 66}, - [645] = {.lex_state = 63}, - [646] = {.lex_state = 63}, - [647] = {.lex_state = 63}, - [648] = {.lex_state = 63}, - [649] = {.lex_state = 63}, - [650] = {.lex_state = 63}, - [651] = {.lex_state = 63}, - [652] = {.lex_state = 63}, - [653] = {.lex_state = 63}, - [654] = {.lex_state = 63}, - [655] = {.lex_state = 65}, - [656] = {.lex_state = 63}, - [657] = {.lex_state = 60}, - [658] = {.lex_state = 63}, - [659] = {.lex_state = 63}, - [660] = {.lex_state = 63}, - [661] = {.lex_state = 63}, - [662] = {.lex_state = 63}, - [663] = {.lex_state = 63}, - [664] = {.lex_state = 63}, - [665] = {.lex_state = 63}, - [666] = {.lex_state = 63}, - [667] = {.lex_state = 63}, - [668] = {.lex_state = 63}, - [669] = {.lex_state = 63}, - [670] = {.lex_state = 63}, - [671] = {.lex_state = 63}, - [672] = {.lex_state = 63}, - [673] = {.lex_state = 63}, - [674] = {.lex_state = 63}, - [675] = {.lex_state = 63}, - [676] = {.lex_state = 63}, - [677] = {.lex_state = 63}, - [678] = {.lex_state = 66}, - [679] = {.lex_state = 13}, - [680] = {.lex_state = 55}, - [681] = {.lex_state = 63}, - [682] = {.lex_state = 63}, - [683] = {.lex_state = 63}, - [684] = {.lex_state = 63}, - [685] = {.lex_state = 63}, - [686] = {.lex_state = 63}, - [687] = {.lex_state = 63}, - [688] = {.lex_state = 63}, - [689] = {.lex_state = 63}, - [690] = {.lex_state = 63}, - [691] = {.lex_state = 63}, - [692] = {.lex_state = 63}, - [693] = {.lex_state = 63}, - [694] = {.lex_state = 63}, - [695] = {.lex_state = 63}, - [696] = {.lex_state = 66}, - [697] = {.lex_state = 63}, - [698] = {.lex_state = 63}, - [699] = {.lex_state = 63}, - [700] = {.lex_state = 62}, - [701] = {.lex_state = 66}, - [702] = {.lex_state = 63}, - [703] = {.lex_state = 63}, - [704] = {.lex_state = 63}, - [705] = {.lex_state = 61}, - [706] = {.lex_state = 60}, - [707] = {.lex_state = 66}, - [708] = {.lex_state = 66}, - [709] = {.lex_state = 66}, - [710] = {.lex_state = 63}, - [711] = {.lex_state = 62}, - [712] = {.lex_state = 64}, - [713] = {.lex_state = 62}, - [714] = {.lex_state = 62}, - [715] = {.lex_state = 62}, - [716] = {.lex_state = 62}, - [717] = {.lex_state = 62}, - [718] = {.lex_state = 62}, - [719] = {.lex_state = 62}, - [720] = {.lex_state = 62}, - [721] = {.lex_state = 62}, - [722] = {.lex_state = 62}, - [723] = {.lex_state = 62}, - [724] = {.lex_state = 62}, - [725] = {.lex_state = 66}, - [726] = {.lex_state = 62}, - [727] = {.lex_state = 62}, - [728] = {.lex_state = 62}, - [729] = {.lex_state = 62}, - [730] = {.lex_state = 62}, - [731] = {.lex_state = 62}, - [732] = {.lex_state = 62}, - [733] = {.lex_state = 62}, - [734] = {.lex_state = 62}, - [735] = {.lex_state = 62}, - [736] = {.lex_state = 62}, - [737] = {.lex_state = 62}, - [738] = {.lex_state = 62}, - [739] = {.lex_state = 62}, - [740] = {.lex_state = 62}, - [741] = {.lex_state = 60}, - [742] = {.lex_state = 62}, - [743] = {.lex_state = 62}, - [744] = {.lex_state = 62}, - [745] = {.lex_state = 62}, - [746] = {.lex_state = 66}, - [747] = {.lex_state = 14}, - [748] = {.lex_state = 59}, - [749] = {.lex_state = 62}, - [750] = {.lex_state = 62}, - [751] = {.lex_state = 62}, - [752] = {.lex_state = 62}, - [753] = {.lex_state = 62}, - [754] = {.lex_state = 62}, - [755] = {.lex_state = 62}, - [756] = {.lex_state = 62}, - [757] = {.lex_state = 62}, - [758] = {.lex_state = 62}, - [759] = {.lex_state = 62}, - [760] = {.lex_state = 62}, - [761] = {.lex_state = 62}, - [762] = {.lex_state = 62}, - [763] = {.lex_state = 62}, - [764] = {.lex_state = 66}, - [765] = {.lex_state = 62}, - [766] = {.lex_state = 62}, - [767] = {.lex_state = 62}, - [768] = {.lex_state = 63}, - [769] = {.lex_state = 66}, - [770] = {.lex_state = 62}, - [771] = {.lex_state = 62}, - [772] = {.lex_state = 62}, - [773] = {.lex_state = 64}, - [774] = {.lex_state = 62}, - [775] = {.lex_state = 64}, - [776] = {.lex_state = 66}, - [777] = {.lex_state = 66}, - [778] = {.lex_state = 66}, - [779] = {.lex_state = 66}, - [780] = {.lex_state = 62}, - [781] = {.lex_state = 65}, - [782] = {.lex_state = 65}, - [783] = {.lex_state = 65}, - [784] = {.lex_state = 65}, - [785] = {.lex_state = 65}, - [786] = {.lex_state = 65}, - [787] = {.lex_state = 65}, - [788] = {.lex_state = 65}, - [789] = {.lex_state = 65}, - [790] = {.lex_state = 59}, - [791] = {.lex_state = 65}, - [792] = {.lex_state = 65}, - [793] = {.lex_state = 65}, - [794] = {.lex_state = 65}, - [795] = {.lex_state = 65}, - [796] = {.lex_state = 65}, - [797] = {.lex_state = 65}, - [798] = {.lex_state = 65}, - [799] = {.lex_state = 65}, - [800] = {.lex_state = 65}, - [801] = {.lex_state = 65}, - [802] = {.lex_state = 65}, - [803] = {.lex_state = 65}, - [804] = {.lex_state = 65}, - [805] = {.lex_state = 65}, - [806] = {.lex_state = 65}, - [807] = {.lex_state = 64}, - [808] = {.lex_state = 65}, - [809] = {.lex_state = 65}, - [810] = {.lex_state = 65}, - [811] = {.lex_state = 65}, - [812] = {.lex_state = 66}, - [813] = {.lex_state = 21}, - [814] = {.lex_state = 65}, - [815] = {.lex_state = 65}, - [816] = {.lex_state = 65}, - [817] = {.lex_state = 65}, - [818] = {.lex_state = 65}, - [819] = {.lex_state = 65}, - [820] = {.lex_state = 65}, - [821] = {.lex_state = 65}, - [822] = {.lex_state = 65}, - [823] = {.lex_state = 65}, - [824] = {.lex_state = 65}, - [825] = {.lex_state = 65}, - [826] = {.lex_state = 65}, - [827] = {.lex_state = 65}, - [828] = {.lex_state = 65}, - [829] = {.lex_state = 65}, - [830] = {.lex_state = 66}, - [831] = {.lex_state = 65}, - [832] = {.lex_state = 65}, - [833] = {.lex_state = 65}, - [834] = {.lex_state = 65}, - [835] = {.lex_state = 65}, - [836] = {.lex_state = 65}, - [837] = {.lex_state = 61}, - [838] = {.lex_state = 65}, - [839] = {.lex_state = 65}, - [840] = {.lex_state = 66}, - [841] = {.lex_state = 60}, - [842] = {.lex_state = 60}, - [843] = {.lex_state = 66}, - [844] = {.lex_state = 66}, - [845] = {.lex_state = 65}, - [846] = {.lex_state = 58}, - [847] = {.lex_state = 58}, - [848] = {.lex_state = 58}, - [849] = {.lex_state = 66}, - [850] = {.lex_state = 58}, - [851] = {.lex_state = 58}, - [852] = {.lex_state = 58}, - [853] = {.lex_state = 58}, - [854] = {.lex_state = 58}, - [855] = {.lex_state = 58}, - [856] = {.lex_state = 58}, - [857] = {.lex_state = 58}, - [858] = {.lex_state = 58}, - [859] = {.lex_state = 58}, - [860] = {.lex_state = 58}, - [861] = {.lex_state = 58}, - [862] = {.lex_state = 58}, - [863] = {.lex_state = 58}, - [864] = {.lex_state = 58}, - [865] = {.lex_state = 58}, - [866] = {.lex_state = 58}, - [867] = {.lex_state = 58}, - [868] = {.lex_state = 58}, - [869] = {.lex_state = 58}, - [870] = {.lex_state = 61}, - [871] = {.lex_state = 58}, - [872] = {.lex_state = 58}, - [873] = {.lex_state = 58}, - [874] = {.lex_state = 58}, - [875] = {.lex_state = 66}, - [876] = {.lex_state = 15}, - [877] = {.lex_state = 58}, - [878] = {.lex_state = 58}, - [879] = {.lex_state = 66}, - [880] = {.lex_state = 58}, - [881] = {.lex_state = 58}, - [882] = {.lex_state = 58}, - [883] = {.lex_state = 58}, - [884] = {.lex_state = 66}, - [885] = {.lex_state = 58}, - [886] = {.lex_state = 58}, - [887] = {.lex_state = 58}, - [888] = {.lex_state = 58}, - [889] = {.lex_state = 58}, - [890] = {.lex_state = 58}, - [891] = {.lex_state = 58}, - [892] = {.lex_state = 58}, - [893] = {.lex_state = 66}, - [894] = {.lex_state = 58}, - [895] = {.lex_state = 58}, - [896] = {.lex_state = 58}, - [897] = {.lex_state = 58}, - [898] = {.lex_state = 58}, - [899] = {.lex_state = 58}, - [900] = {.lex_state = 58}, - [901] = {.lex_state = 58}, - [902] = {.lex_state = 58}, - [903] = {.lex_state = 66}, - [904] = {.lex_state = 58}, - [905] = {.lex_state = 58}, - [906] = {.lex_state = 66}, - [907] = {.lex_state = 58}, - [908] = {.lex_state = 58}, - [909] = {.lex_state = 66}, - [910] = {.lex_state = 66}, - [911] = {.lex_state = 58}, - [912] = {.lex_state = 61}, - [913] = {.lex_state = 61}, - [914] = {.lex_state = 61}, - [915] = {.lex_state = 63}, - [916] = {.lex_state = 61}, - [917] = {.lex_state = 61}, - [918] = {.lex_state = 61}, - [919] = {.lex_state = 61}, - [920] = {.lex_state = 61}, - [921] = {.lex_state = 61}, - [922] = {.lex_state = 61}, - [923] = {.lex_state = 61}, - [924] = {.lex_state = 61}, - [925] = {.lex_state = 61}, - [926] = {.lex_state = 61}, - [927] = {.lex_state = 61}, - [928] = {.lex_state = 61}, - [929] = {.lex_state = 61}, - [930] = {.lex_state = 61}, - [931] = {.lex_state = 61}, - [932] = {.lex_state = 61}, - [933] = {.lex_state = 58}, - [934] = {.lex_state = 61}, - [935] = {.lex_state = 61}, - [936] = {.lex_state = 61}, - [937] = {.lex_state = 61}, - [938] = {.lex_state = 66}, - [939] = {.lex_state = 19}, - [940] = {.lex_state = 61}, - [941] = {.lex_state = 61}, - [942] = {.lex_state = 61}, - [943] = {.lex_state = 61}, - [944] = {.lex_state = 61}, - [945] = {.lex_state = 66}, - [946] = {.lex_state = 61}, - [947] = {.lex_state = 61}, - [948] = {.lex_state = 61}, - [949] = {.lex_state = 61}, - [950] = {.lex_state = 63}, - [951] = {.lex_state = 61}, - [952] = {.lex_state = 61}, - [953] = {.lex_state = 61}, - [954] = {.lex_state = 61}, - [955] = {.lex_state = 61}, - [956] = {.lex_state = 66}, - [957] = {.lex_state = 61}, - [958] = {.lex_state = 61}, - [959] = {.lex_state = 61}, - [960] = {.lex_state = 61}, - [961] = {.lex_state = 61}, - [962] = {.lex_state = 61}, - [963] = {.lex_state = 64}, - [964] = {.lex_state = 61}, - [965] = {.lex_state = 61}, - [966] = {.lex_state = 66}, - [967] = {.lex_state = 61}, - [968] = {.lex_state = 61}, - [969] = {.lex_state = 59}, - [970] = {.lex_state = 61}, - [971] = {.lex_state = 61}, - [972] = {.lex_state = 61}, - [973] = {.lex_state = 61}, - [974] = {.lex_state = 61}, - [975] = {.lex_state = 66}, - [976] = {.lex_state = 66}, - [977] = {.lex_state = 61}, - [978] = {.lex_state = 64}, - [979] = {.lex_state = 64}, - [980] = {.lex_state = 64}, - [981] = {.lex_state = 62}, - [982] = {.lex_state = 64}, - [983] = {.lex_state = 64}, - [984] = {.lex_state = 64}, - [985] = {.lex_state = 64}, - [986] = {.lex_state = 64}, - [987] = {.lex_state = 64}, - [988] = {.lex_state = 64}, - [989] = {.lex_state = 64}, - [990] = {.lex_state = 64}, - [991] = {.lex_state = 64}, - [992] = {.lex_state = 64}, - [993] = {.lex_state = 64}, - [994] = {.lex_state = 64}, - [995] = {.lex_state = 64}, - [996] = {.lex_state = 64}, - [997] = {.lex_state = 64}, - [998] = {.lex_state = 64}, - [999] = {.lex_state = 64}, - [1000] = {.lex_state = 60}, - [1001] = {.lex_state = 7}, - [1002] = {.lex_state = 60}, - [1003] = {.lex_state = 64}, - [1004] = {.lex_state = 60}, - [1005] = {.lex_state = 60}, - [1006] = {.lex_state = 60}, - [1007] = {.lex_state = 60}, - [1008] = {.lex_state = 60}, - [1009] = {.lex_state = 60}, - [1010] = {.lex_state = 60}, - [1011] = {.lex_state = 60}, - [1012] = {.lex_state = 60}, - [1013] = {.lex_state = 60}, - [1014] = {.lex_state = 60}, - [1015] = {.lex_state = 60}, - [1016] = {.lex_state = 60}, - [1017] = {.lex_state = 60}, - [1018] = {.lex_state = 60}, - [1019] = {.lex_state = 59}, - [1020] = {.lex_state = 60}, - [1021] = {.lex_state = 64}, - [1022] = {.lex_state = 60}, - [1023] = {.lex_state = 60}, - [1024] = {.lex_state = 60}, - [1025] = {.lex_state = 60}, - [1026] = {.lex_state = 65}, - [1027] = {.lex_state = 60}, - [1028] = {.lex_state = 60}, - [1029] = {.lex_state = 66}, - [1030] = {.lex_state = 60}, - [1031] = {.lex_state = 60}, - [1032] = {.lex_state = 3}, - [1033] = {.lex_state = 60}, - [1034] = {.lex_state = 60}, - [1035] = {.lex_state = 60}, - [1036] = {.lex_state = 60}, - [1037] = {.lex_state = 60}, - [1038] = {.lex_state = 60}, - [1039] = {.lex_state = 60}, - [1040] = {.lex_state = 60}, - [1041] = {.lex_state = 60}, - [1042] = {.lex_state = 60}, - [1043] = {.lex_state = 60}, - [1044] = {.lex_state = 60}, - [1045] = {.lex_state = 60}, - [1046] = {.lex_state = 60}, - [1047] = {.lex_state = 60}, - [1048] = {.lex_state = 60}, - [1049] = {.lex_state = 60}, - [1050] = {.lex_state = 60}, - [1051] = {.lex_state = 60}, - [1052] = {.lex_state = 60}, - [1053] = {.lex_state = 60}, - [1054] = {.lex_state = 60}, - [1055] = {.lex_state = 60}, - [1056] = {.lex_state = 60}, - [1057] = {.lex_state = 60}, - [1058] = {.lex_state = 60}, - [1059] = {.lex_state = 65}, - [1060] = {.lex_state = 60}, - [1061] = {.lex_state = 60}, - [1062] = {.lex_state = 60}, - [1063] = {.lex_state = 64}, - [1064] = {.lex_state = 66}, - [1065] = {.lex_state = 59}, - [1066] = {.lex_state = 64}, - [1067] = {.lex_state = 64}, - [1068] = {.lex_state = 64}, - [1069] = {.lex_state = 64}, - [1070] = {.lex_state = 64}, - [1071] = {.lex_state = 64}, - [1072] = {.lex_state = 64}, - [1073] = {.lex_state = 64}, - [1074] = {.lex_state = 64}, - [1075] = {.lex_state = 64}, - [1076] = {.lex_state = 64}, - [1077] = {.lex_state = 64}, - [1078] = {.lex_state = 64}, - [1079] = {.lex_state = 64}, - [1080] = {.lex_state = 64}, - [1081] = {.lex_state = 64}, - [1082] = {.lex_state = 55}, - [1083] = {.lex_state = 64}, - [1084] = {.lex_state = 64}, - [1085] = {.lex_state = 64}, - [1086] = {.lex_state = 64}, - [1087] = {.lex_state = 64}, - [1088] = {.lex_state = 64}, - [1089] = {.lex_state = 62}, - [1090] = {.lex_state = 64}, - [1091] = {.lex_state = 64}, - [1092] = {.lex_state = 55}, - [1093] = {.lex_state = 64}, - [1094] = {.lex_state = 64}, - [1095] = {.lex_state = 55}, - [1096] = {.lex_state = 64}, - [1097] = {.lex_state = 64}, - [1098] = {.lex_state = 39}, - [1099] = {.lex_state = 39}, - [1100] = {.lex_state = 44}, - [1101] = {.lex_state = 43}, - [1102] = {.lex_state = 43}, - [1103] = {.lex_state = 50}, - [1104] = {.lex_state = 46}, - [1105] = {.lex_state = 49}, - [1106] = {.lex_state = 54}, - [1107] = {.lex_state = 54}, - [1108] = {.lex_state = 54}, - [1109] = {.lex_state = 54}, - [1110] = {.lex_state = 54}, - [1111] = {.lex_state = 54}, - [1112] = {.lex_state = 54}, - [1113] = {.lex_state = 54}, - [1114] = {.lex_state = 54}, - [1115] = {.lex_state = 54}, - [1116] = {.lex_state = 54}, - [1117] = {.lex_state = 54}, - [1118] = {.lex_state = 54}, - [1119] = {.lex_state = 54}, - [1120] = {.lex_state = 54}, - [1121] = {.lex_state = 54}, - [1122] = {.lex_state = 54}, - [1123] = {.lex_state = 54}, - [1124] = {.lex_state = 54}, - [1125] = {.lex_state = 54}, - [1126] = {.lex_state = 54}, - [1127] = {.lex_state = 54}, - [1128] = {.lex_state = 54}, - [1129] = {.lex_state = 50}, - [1130] = {.lex_state = 54}, - [1131] = {.lex_state = 54}, - [1132] = {.lex_state = 54}, - [1133] = {.lex_state = 54}, - [1134] = {.lex_state = 54}, - [1135] = {.lex_state = 54}, - [1136] = {.lex_state = 54}, - [1137] = {.lex_state = 54}, - [1138] = {.lex_state = 54}, - [1139] = {.lex_state = 54}, - [1140] = {.lex_state = 54}, - [1141] = {.lex_state = 54}, - [1142] = {.lex_state = 54}, - [1143] = {.lex_state = 54}, - [1144] = {.lex_state = 51}, - [1145] = {.lex_state = 54}, - [1146] = {.lex_state = 47}, - [1147] = {.lex_state = 54}, - [1148] = {.lex_state = 54}, - [1149] = {.lex_state = 54}, - [1150] = {.lex_state = 54}, - [1151] = {.lex_state = 54}, - [1152] = {.lex_state = 54}, - [1153] = {.lex_state = 54}, - [1154] = {.lex_state = 54}, - [1155] = {.lex_state = 54}, - [1156] = {.lex_state = 54}, - [1157] = {.lex_state = 54}, - [1158] = {.lex_state = 54}, - [1159] = {.lex_state = 54}, - [1160] = {.lex_state = 54}, - [1161] = {.lex_state = 54}, - [1162] = {.lex_state = 48}, - [1163] = {.lex_state = 54}, - [1164] = {.lex_state = 50}, - [1165] = {.lex_state = 50}, - [1166] = {.lex_state = 50}, - [1167] = {.lex_state = 50}, - [1168] = {.lex_state = 50}, - [1169] = {.lex_state = 50}, - [1170] = {.lex_state = 50}, - [1171] = {.lex_state = 50}, - [1172] = {.lex_state = 50}, - [1173] = {.lex_state = 50}, - [1174] = {.lex_state = 50}, - [1175] = {.lex_state = 50}, - [1176] = {.lex_state = 50}, - [1177] = {.lex_state = 50}, - [1178] = {.lex_state = 50}, - [1179] = {.lex_state = 50}, - [1180] = {.lex_state = 50}, - [1181] = {.lex_state = 50}, - [1182] = {.lex_state = 50}, - [1183] = {.lex_state = 50}, - [1184] = {.lex_state = 50}, - [1185] = {.lex_state = 50}, - [1186] = {.lex_state = 50}, - [1187] = {.lex_state = 50}, - [1188] = {.lex_state = 50}, - [1189] = {.lex_state = 50}, - [1190] = {.lex_state = 54}, - [1191] = {.lex_state = 50}, - [1192] = {.lex_state = 50}, - [1193] = {.lex_state = 50}, - [1194] = {.lex_state = 50}, - [1195] = {.lex_state = 50}, - [1196] = {.lex_state = 50}, - [1197] = {.lex_state = 50}, - [1198] = {.lex_state = 50}, - [1199] = {.lex_state = 56}, - [1200] = {.lex_state = 50}, - [1201] = {.lex_state = 50}, - [1202] = {.lex_state = 52}, - [1203] = {.lex_state = 50}, - [1204] = {.lex_state = 50}, - [1205] = {.lex_state = 50}, - [1206] = {.lex_state = 50}, - [1207] = {.lex_state = 40}, - [1208] = {.lex_state = 50}, - [1209] = {.lex_state = 50}, - [1210] = {.lex_state = 50}, - [1211] = {.lex_state = 50}, - [1212] = {.lex_state = 50}, - [1213] = {.lex_state = 50}, - [1214] = {.lex_state = 50}, - [1215] = {.lex_state = 50}, - [1216] = {.lex_state = 50}, - [1217] = {.lex_state = 50}, - [1218] = {.lex_state = 50}, - [1219] = {.lex_state = 50}, - [1220] = {.lex_state = 45}, - [1221] = {.lex_state = 50}, - [1222] = {.lex_state = 56}, - [1223] = {.lex_state = 56}, - [1224] = {.lex_state = 56}, - [1225] = {.lex_state = 56}, - [1226] = {.lex_state = 56}, - [1227] = {.lex_state = 56}, - [1228] = {.lex_state = 49}, - [1229] = {.lex_state = 56}, - [1230] = {.lex_state = 56}, - [1231] = {.lex_state = 56}, - [1232] = {.lex_state = 56}, - [1233] = {.lex_state = 56}, - [1234] = {.lex_state = 56}, - [1235] = {.lex_state = 56}, - [1236] = {.lex_state = 56}, - [1237] = {.lex_state = 56}, - [1238] = {.lex_state = 56}, - [1239] = {.lex_state = 56}, - [1240] = {.lex_state = 56}, - [1241] = {.lex_state = 56}, - [1242] = {.lex_state = 56}, - [1243] = {.lex_state = 56}, - [1244] = {.lex_state = 56}, - [1245] = {.lex_state = 56}, - [1246] = {.lex_state = 56}, - [1247] = {.lex_state = 56}, - [1248] = {.lex_state = 56}, - [1249] = {.lex_state = 56}, - [1250] = {.lex_state = 56}, - [1251] = {.lex_state = 56}, - [1252] = {.lex_state = 56}, - [1253] = {.lex_state = 56}, - [1254] = {.lex_state = 56}, - [1255] = {.lex_state = 56}, - [1256] = {.lex_state = 56}, - [1257] = {.lex_state = 56}, - [1258] = {.lex_state = 56}, - [1259] = {.lex_state = 57}, - [1260] = {.lex_state = 56}, - [1261] = {.lex_state = 56}, - [1262] = {.lex_state = 56}, - [1263] = {.lex_state = 56}, - [1264] = {.lex_state = 56}, - [1265] = {.lex_state = 56}, - [1266] = {.lex_state = 56}, - [1267] = {.lex_state = 56}, - [1268] = {.lex_state = 56}, - [1269] = {.lex_state = 56}, - [1270] = {.lex_state = 56}, - [1271] = {.lex_state = 56}, - [1272] = {.lex_state = 53}, - [1273] = {.lex_state = 56}, - [1274] = {.lex_state = 56}, - [1275] = {.lex_state = 56}, - [1276] = {.lex_state = 56}, - [1277] = {.lex_state = 44}, - [1278] = {.lex_state = 56}, - [1279] = {.lex_state = 49}, - [1280] = {.lex_state = 49}, - [1281] = {.lex_state = 49}, - [1282] = {.lex_state = 49}, - [1283] = {.lex_state = 49}, - [1284] = {.lex_state = 49}, - [1285] = {.lex_state = 49}, - [1286] = {.lex_state = 49}, - [1287] = {.lex_state = 49}, - [1288] = {.lex_state = 49}, - [1289] = {.lex_state = 49}, - [1290] = {.lex_state = 49}, - [1291] = {.lex_state = 49}, - [1292] = {.lex_state = 49}, - [1293] = {.lex_state = 49}, - [1294] = {.lex_state = 49}, - [1295] = {.lex_state = 49}, - [1296] = {.lex_state = 49}, - [1297] = {.lex_state = 49}, - [1298] = {.lex_state = 49}, - [1299] = {.lex_state = 49}, - [1300] = {.lex_state = 49}, - [1301] = {.lex_state = 49}, - [1302] = {.lex_state = 49}, - [1303] = {.lex_state = 53}, - [1304] = {.lex_state = 49}, - [1305] = {.lex_state = 49}, - [1306] = {.lex_state = 49}, - [1307] = {.lex_state = 49}, - [1308] = {.lex_state = 49}, - [1309] = {.lex_state = 49}, - [1310] = {.lex_state = 49}, - [1311] = {.lex_state = 49}, - [1312] = {.lex_state = 49}, - [1313] = {.lex_state = 49}, - [1314] = {.lex_state = 49}, - [1315] = {.lex_state = 48}, - [1316] = {.lex_state = 49}, - [1317] = {.lex_state = 53}, - [1318] = {.lex_state = 49}, - [1319] = {.lex_state = 49}, - [1320] = {.lex_state = 49}, - [1321] = {.lex_state = 49}, - [1322] = {.lex_state = 49}, - [1323] = {.lex_state = 49}, - [1324] = {.lex_state = 49}, - [1325] = {.lex_state = 49}, - [1326] = {.lex_state = 49}, - [1327] = {.lex_state = 49}, - [1328] = {.lex_state = 49}, - [1329] = {.lex_state = 49}, - [1330] = {.lex_state = 49}, - [1331] = {.lex_state = 57}, - [1332] = {.lex_state = 49}, - [1333] = {.lex_state = 49}, - [1334] = {.lex_state = 49}, - [1335] = {.lex_state = 49}, - [1336] = {.lex_state = 48}, - [1337] = {.lex_state = 48}, - [1338] = {.lex_state = 48}, - [1339] = {.lex_state = 48}, - [1340] = {.lex_state = 48}, - [1341] = {.lex_state = 48}, - [1342] = {.lex_state = 48}, - [1343] = {.lex_state = 48}, - [1344] = {.lex_state = 48}, - [1345] = {.lex_state = 48}, - [1346] = {.lex_state = 48}, - [1347] = {.lex_state = 48}, - [1348] = {.lex_state = 48}, - [1349] = {.lex_state = 48}, - [1350] = {.lex_state = 48}, - [1351] = {.lex_state = 48}, - [1352] = {.lex_state = 48}, - [1353] = {.lex_state = 48}, - [1354] = {.lex_state = 48}, - [1355] = {.lex_state = 48}, - [1356] = {.lex_state = 45}, - [1357] = {.lex_state = 48}, - [1358] = {.lex_state = 48}, - [1359] = {.lex_state = 48}, - [1360] = {.lex_state = 48}, - [1361] = {.lex_state = 48}, - [1362] = {.lex_state = 57}, - [1363] = {.lex_state = 48}, - [1364] = {.lex_state = 48}, - [1365] = {.lex_state = 48}, - [1366] = {.lex_state = 48}, - [1367] = {.lex_state = 48}, - [1368] = {.lex_state = 48}, - [1369] = {.lex_state = 48}, - [1370] = {.lex_state = 48}, - [1371] = {.lex_state = 48}, - [1372] = {.lex_state = 48}, - [1373] = {.lex_state = 48}, - [1374] = {.lex_state = 54}, - [1375] = {.lex_state = 48}, - [1376] = {.lex_state = 48}, - [1377] = {.lex_state = 48}, - [1378] = {.lex_state = 48}, - [1379] = {.lex_state = 48}, - [1380] = {.lex_state = 48}, - [1381] = {.lex_state = 48}, - [1382] = {.lex_state = 48}, - [1383] = {.lex_state = 48}, - [1384] = {.lex_state = 48}, - [1385] = {.lex_state = 48}, - [1386] = {.lex_state = 48}, - [1387] = {.lex_state = 48}, - [1388] = {.lex_state = 48}, - [1389] = {.lex_state = 48}, - [1390] = {.lex_state = 52}, - [1391] = {.lex_state = 48}, - [1392] = {.lex_state = 48}, - [1393] = {.lex_state = 45}, - [1394] = {.lex_state = 45}, - [1395] = {.lex_state = 45}, - [1396] = {.lex_state = 54}, - [1397] = {.lex_state = 45}, - [1398] = {.lex_state = 45}, - [1399] = {.lex_state = 45}, - [1400] = {.lex_state = 45}, - [1401] = {.lex_state = 45}, - [1402] = {.lex_state = 45}, - [1403] = {.lex_state = 45}, - [1404] = {.lex_state = 45}, - [1405] = {.lex_state = 45}, - [1406] = {.lex_state = 45}, - [1407] = {.lex_state = 45}, - [1408] = {.lex_state = 45}, - [1409] = {.lex_state = 45}, - [1410] = {.lex_state = 45}, - [1411] = {.lex_state = 45}, - [1412] = {.lex_state = 45}, - [1413] = {.lex_state = 45}, - [1414] = {.lex_state = 45}, - [1415] = {.lex_state = 45}, - [1416] = {.lex_state = 45}, - [1417] = {.lex_state = 45}, - [1418] = {.lex_state = 45}, - [1419] = {.lex_state = 45}, - [1420] = {.lex_state = 45}, - [1421] = {.lex_state = 52}, - [1422] = {.lex_state = 45}, - [1423] = {.lex_state = 45}, - [1424] = {.lex_state = 45}, - [1425] = {.lex_state = 53}, - [1426] = {.lex_state = 54}, - [1427] = {.lex_state = 45}, - [1428] = {.lex_state = 45}, - [1429] = {.lex_state = 53}, - [1430] = {.lex_state = 53}, - [1431] = {.lex_state = 53}, - [1432] = {.lex_state = 53}, - [1433] = {.lex_state = 53}, - [1434] = {.lex_state = 53}, - [1435] = {.lex_state = 53}, - [1436] = {.lex_state = 53}, - [1437] = {.lex_state = 53}, - [1438] = {.lex_state = 53}, - [1439] = {.lex_state = 53}, - [1440] = {.lex_state = 53}, - [1441] = {.lex_state = 53}, - [1442] = {.lex_state = 53}, - [1443] = {.lex_state = 53}, - [1444] = {.lex_state = 53}, - [1445] = {.lex_state = 53}, - [1446] = {.lex_state = 53}, - [1447] = {.lex_state = 53}, - [1448] = {.lex_state = 53}, - [1449] = {.lex_state = 51}, - [1450] = {.lex_state = 53}, - [1451] = {.lex_state = 53}, - [1452] = {.lex_state = 53}, - [1453] = {.lex_state = 53}, - [1454] = {.lex_state = 53}, - [1455] = {.lex_state = 53}, - [1456] = {.lex_state = 53}, - [1457] = {.lex_state = 53}, - [1458] = {.lex_state = 53}, - [1459] = {.lex_state = 53}, - [1460] = {.lex_state = 53}, - [1461] = {.lex_state = 53}, - [1462] = {.lex_state = 53}, - [1463] = {.lex_state = 53}, - [1464] = {.lex_state = 53}, - [1465] = {.lex_state = 53}, - [1466] = {.lex_state = 53}, - [1467] = {.lex_state = 53}, - [1468] = {.lex_state = 53}, - [1469] = {.lex_state = 53}, - [1470] = {.lex_state = 53}, - [1471] = {.lex_state = 53}, - [1472] = {.lex_state = 53}, - [1473] = {.lex_state = 53}, - [1474] = {.lex_state = 53}, - [1475] = {.lex_state = 53}, - [1476] = {.lex_state = 53}, - [1477] = {.lex_state = 53}, - [1478] = {.lex_state = 53}, - [1479] = {.lex_state = 53}, - [1480] = {.lex_state = 51}, - [1481] = {.lex_state = 53}, - [1482] = {.lex_state = 53}, - [1483] = {.lex_state = 53}, - [1484] = {.lex_state = 57}, - [1485] = {.lex_state = 45}, - [1486] = {.lex_state = 45}, - [1487] = {.lex_state = 45}, - [1488] = {.lex_state = 57}, - [1489] = {.lex_state = 57}, - [1490] = {.lex_state = 57}, - [1491] = {.lex_state = 57}, - [1492] = {.lex_state = 57}, - [1493] = {.lex_state = 57}, - [1494] = {.lex_state = 57}, - [1495] = {.lex_state = 57}, - [1496] = {.lex_state = 57}, - [1497] = {.lex_state = 57}, - [1498] = {.lex_state = 57}, - [1499] = {.lex_state = 57}, - [1500] = {.lex_state = 57}, - [1501] = {.lex_state = 57}, - [1502] = {.lex_state = 57}, - [1503] = {.lex_state = 57}, - [1504] = {.lex_state = 57}, - [1505] = {.lex_state = 57}, - [1506] = {.lex_state = 57}, - [1507] = {.lex_state = 57}, - [1508] = {.lex_state = 46}, - [1509] = {.lex_state = 57}, - [1510] = {.lex_state = 57}, - [1511] = {.lex_state = 57}, - [1512] = {.lex_state = 57}, - [1513] = {.lex_state = 57}, - [1514] = {.lex_state = 57}, - [1515] = {.lex_state = 57}, - [1516] = {.lex_state = 57}, - [1517] = {.lex_state = 57}, - [1518] = {.lex_state = 57}, - [1519] = {.lex_state = 57}, - [1520] = {.lex_state = 57}, - [1521] = {.lex_state = 57}, - [1522] = {.lex_state = 57}, - [1523] = {.lex_state = 57}, - [1524] = {.lex_state = 57}, - [1525] = {.lex_state = 57}, - [1526] = {.lex_state = 57}, - [1527] = {.lex_state = 57}, - [1528] = {.lex_state = 57}, - [1529] = {.lex_state = 57}, - [1530] = {.lex_state = 57}, - [1531] = {.lex_state = 57}, - [1532] = {.lex_state = 57}, - [1533] = {.lex_state = 57}, - [1534] = {.lex_state = 57}, - [1535] = {.lex_state = 57}, - [1536] = {.lex_state = 57}, - [1537] = {.lex_state = 57}, - [1538] = {.lex_state = 57}, - [1539] = {.lex_state = 46}, - [1540] = {.lex_state = 57}, - [1541] = {.lex_state = 57}, - [1542] = {.lex_state = 57}, - [1543] = {.lex_state = 52}, - [1544] = {.lex_state = 45}, - [1545] = {.lex_state = 45}, - [1546] = {.lex_state = 50}, - [1547] = {.lex_state = 52}, - [1548] = {.lex_state = 52}, - [1549] = {.lex_state = 52}, - [1550] = {.lex_state = 52}, - [1551] = {.lex_state = 52}, - [1552] = {.lex_state = 52}, - [1553] = {.lex_state = 52}, - [1554] = {.lex_state = 52}, - [1555] = {.lex_state = 52}, - [1556] = {.lex_state = 52}, - [1557] = {.lex_state = 52}, - [1558] = {.lex_state = 52}, - [1559] = {.lex_state = 52}, - [1560] = {.lex_state = 52}, - [1561] = {.lex_state = 52}, - [1562] = {.lex_state = 52}, - [1563] = {.lex_state = 52}, - [1564] = {.lex_state = 52}, - [1565] = {.lex_state = 52}, - [1566] = {.lex_state = 52}, - [1567] = {.lex_state = 43}, - [1568] = {.lex_state = 52}, - [1569] = {.lex_state = 52}, - [1570] = {.lex_state = 52}, - [1571] = {.lex_state = 52}, - [1572] = {.lex_state = 52}, - [1573] = {.lex_state = 52}, - [1574] = {.lex_state = 52}, - [1575] = {.lex_state = 52}, - [1576] = {.lex_state = 52}, - [1577] = {.lex_state = 52}, - [1578] = {.lex_state = 52}, - [1579] = {.lex_state = 52}, - [1580] = {.lex_state = 52}, - [1581] = {.lex_state = 52}, - [1582] = {.lex_state = 52}, - [1583] = {.lex_state = 52}, - [1584] = {.lex_state = 52}, - [1585] = {.lex_state = 52}, - [1586] = {.lex_state = 52}, - [1587] = {.lex_state = 52}, - [1588] = {.lex_state = 52}, - [1589] = {.lex_state = 52}, - [1590] = {.lex_state = 52}, - [1591] = {.lex_state = 52}, - [1592] = {.lex_state = 52}, - [1593] = {.lex_state = 52}, - [1594] = {.lex_state = 52}, - [1595] = {.lex_state = 52}, - [1596] = {.lex_state = 52}, - [1597] = {.lex_state = 52}, - [1598] = {.lex_state = 43}, - [1599] = {.lex_state = 52}, - [1600] = {.lex_state = 52}, - [1601] = {.lex_state = 52}, - [1602] = {.lex_state = 51}, - [1603] = {.lex_state = 45}, - [1604] = {.lex_state = 45}, - [1605] = {.lex_state = 45}, - [1606] = {.lex_state = 51}, - [1607] = {.lex_state = 51}, - [1608] = {.lex_state = 51}, - [1609] = {.lex_state = 51}, - [1610] = {.lex_state = 51}, - [1611] = {.lex_state = 51}, - [1612] = {.lex_state = 51}, - [1613] = {.lex_state = 51}, - [1614] = {.lex_state = 51}, - [1615] = {.lex_state = 51}, - [1616] = {.lex_state = 51}, - [1617] = {.lex_state = 51}, - [1618] = {.lex_state = 51}, - [1619] = {.lex_state = 51}, - [1620] = {.lex_state = 51}, - [1621] = {.lex_state = 51}, - [1622] = {.lex_state = 51}, - [1623] = {.lex_state = 51}, - [1624] = {.lex_state = 51}, - [1625] = {.lex_state = 51}, - [1626] = {.lex_state = 47}, - [1627] = {.lex_state = 51}, - [1628] = {.lex_state = 51}, - [1629] = {.lex_state = 51}, - [1630] = {.lex_state = 51}, - [1631] = {.lex_state = 51}, - [1632] = {.lex_state = 51}, - [1633] = {.lex_state = 51}, - [1634] = {.lex_state = 51}, - [1635] = {.lex_state = 51}, - [1636] = {.lex_state = 51}, - [1637] = {.lex_state = 51}, - [1638] = {.lex_state = 51}, - [1639] = {.lex_state = 51}, - [1640] = {.lex_state = 51}, - [1641] = {.lex_state = 51}, - [1642] = {.lex_state = 51}, - [1643] = {.lex_state = 51}, - [1644] = {.lex_state = 51}, - [1645] = {.lex_state = 51}, - [1646] = {.lex_state = 51}, - [1647] = {.lex_state = 51}, - [1648] = {.lex_state = 51}, - [1649] = {.lex_state = 51}, - [1650] = {.lex_state = 51}, - [1651] = {.lex_state = 51}, - [1652] = {.lex_state = 51}, - [1653] = {.lex_state = 51}, - [1654] = {.lex_state = 51}, - [1655] = {.lex_state = 51}, - [1656] = {.lex_state = 51}, - [1657] = {.lex_state = 47}, - [1658] = {.lex_state = 51}, - [1659] = {.lex_state = 51}, - [1660] = {.lex_state = 51}, - [1661] = {.lex_state = 46}, - [1662] = {.lex_state = 45}, - [1663] = {.lex_state = 45}, - [1664] = {.lex_state = 53}, - [1665] = {.lex_state = 46}, - [1666] = {.lex_state = 46}, - [1667] = {.lex_state = 46}, - [1668] = {.lex_state = 46}, - [1669] = {.lex_state = 46}, - [1670] = {.lex_state = 46}, - [1671] = {.lex_state = 46}, - [1672] = {.lex_state = 46}, - [1673] = {.lex_state = 46}, - [1674] = {.lex_state = 46}, - [1675] = {.lex_state = 46}, - [1676] = {.lex_state = 46}, - [1677] = {.lex_state = 46}, - [1678] = {.lex_state = 46}, - [1679] = {.lex_state = 46}, - [1680] = {.lex_state = 46}, - [1681] = {.lex_state = 46}, - [1682] = {.lex_state = 46}, - [1683] = {.lex_state = 46}, - [1684] = {.lex_state = 46}, - [1685] = {.lex_state = 42}, - [1686] = {.lex_state = 46}, - [1687] = {.lex_state = 46}, - [1688] = {.lex_state = 46}, - [1689] = {.lex_state = 46}, - [1690] = {.lex_state = 46}, - [1691] = {.lex_state = 46}, - [1692] = {.lex_state = 46}, - [1693] = {.lex_state = 46}, - [1694] = {.lex_state = 46}, - [1695] = {.lex_state = 46}, - [1696] = {.lex_state = 46}, - [1697] = {.lex_state = 46}, - [1698] = {.lex_state = 46}, - [1699] = {.lex_state = 46}, - [1700] = {.lex_state = 46}, - [1701] = {.lex_state = 46}, - [1702] = {.lex_state = 46}, - [1703] = {.lex_state = 46}, - [1704] = {.lex_state = 46}, - [1705] = {.lex_state = 46}, - [1706] = {.lex_state = 46}, - [1707] = {.lex_state = 46}, - [1708] = {.lex_state = 46}, - [1709] = {.lex_state = 46}, - [1710] = {.lex_state = 46}, - [1711] = {.lex_state = 46}, - [1712] = {.lex_state = 46}, - [1713] = {.lex_state = 46}, - [1714] = {.lex_state = 46}, - [1715] = {.lex_state = 46}, - [1716] = {.lex_state = 42}, - [1717] = {.lex_state = 46}, - [1718] = {.lex_state = 46}, - [1719] = {.lex_state = 46}, - [1720] = {.lex_state = 43}, - [1721] = {.lex_state = 45}, - [1722] = {.lex_state = 45}, - [1723] = {.lex_state = 57}, - [1724] = {.lex_state = 43}, - [1725] = {.lex_state = 43}, - [1726] = {.lex_state = 43}, - [1727] = {.lex_state = 43}, - [1728] = {.lex_state = 43}, - [1729] = {.lex_state = 43}, - [1730] = {.lex_state = 43}, - [1731] = {.lex_state = 43}, - [1732] = {.lex_state = 43}, - [1733] = {.lex_state = 43}, - [1734] = {.lex_state = 43}, - [1735] = {.lex_state = 43}, - [1736] = {.lex_state = 43}, - [1737] = {.lex_state = 43}, - [1738] = {.lex_state = 43}, - [1739] = {.lex_state = 43}, - [1740] = {.lex_state = 43}, - [1741] = {.lex_state = 56}, - [1742] = {.lex_state = 43}, - [1743] = {.lex_state = 43}, - [1744] = {.lex_state = 38}, - [1745] = {.lex_state = 43}, - [1746] = {.lex_state = 43}, - [1747] = {.lex_state = 43}, - [1748] = {.lex_state = 43}, - [1749] = {.lex_state = 43}, - [1750] = {.lex_state = 43}, - [1751] = {.lex_state = 43}, - [1752] = {.lex_state = 43}, - [1753] = {.lex_state = 43}, - [1754] = {.lex_state = 43}, - [1755] = {.lex_state = 43}, - [1756] = {.lex_state = 43}, - [1757] = {.lex_state = 43}, - [1758] = {.lex_state = 43}, - [1759] = {.lex_state = 43}, - [1760] = {.lex_state = 43}, - [1761] = {.lex_state = 43}, - [1762] = {.lex_state = 43}, - [1763] = {.lex_state = 43}, - [1764] = {.lex_state = 43}, - [1765] = {.lex_state = 43}, - [1766] = {.lex_state = 43}, - [1767] = {.lex_state = 43}, - [1768] = {.lex_state = 43}, - [1769] = {.lex_state = 43}, - [1770] = {.lex_state = 43}, - [1771] = {.lex_state = 43}, - [1772] = {.lex_state = 43}, - [1773] = {.lex_state = 43}, - [1774] = {.lex_state = 43}, - [1775] = {.lex_state = 38}, - [1776] = {.lex_state = 43}, - [1777] = {.lex_state = 43}, - [1778] = {.lex_state = 43}, - [1779] = {.lex_state = 47}, - [1780] = {.lex_state = 45}, - [1781] = {.lex_state = 45}, - [1782] = {.lex_state = 52}, - [1783] = {.lex_state = 47}, - [1784] = {.lex_state = 47}, - [1785] = {.lex_state = 47}, - [1786] = {.lex_state = 47}, - [1787] = {.lex_state = 47}, - [1788] = {.lex_state = 47}, - [1789] = {.lex_state = 47}, - [1790] = {.lex_state = 47}, - [1791] = {.lex_state = 47}, - [1792] = {.lex_state = 47}, - [1793] = {.lex_state = 47}, - [1794] = {.lex_state = 47}, - [1795] = {.lex_state = 47}, - [1796] = {.lex_state = 47}, - [1797] = {.lex_state = 47}, - [1798] = {.lex_state = 47}, - [1799] = {.lex_state = 47}, - [1800] = {.lex_state = 47}, - [1801] = {.lex_state = 47}, - [1802] = {.lex_state = 47}, - [1803] = {.lex_state = 45}, - [1804] = {.lex_state = 47}, - [1805] = {.lex_state = 47}, - [1806] = {.lex_state = 47}, - [1807] = {.lex_state = 47}, - [1808] = {.lex_state = 47}, - [1809] = {.lex_state = 47}, - [1810] = {.lex_state = 47}, - [1811] = {.lex_state = 47}, - [1812] = {.lex_state = 47}, - [1813] = {.lex_state = 47}, - [1814] = {.lex_state = 47}, - [1815] = {.lex_state = 47}, - [1816] = {.lex_state = 47}, - [1817] = {.lex_state = 47}, - [1818] = {.lex_state = 47}, - [1819] = {.lex_state = 47}, - [1820] = {.lex_state = 47}, - [1821] = {.lex_state = 47}, - [1822] = {.lex_state = 47}, - [1823] = {.lex_state = 47}, - [1824] = {.lex_state = 47}, - [1825] = {.lex_state = 47}, - [1826] = {.lex_state = 47}, - [1827] = {.lex_state = 47}, - [1828] = {.lex_state = 47}, - [1829] = {.lex_state = 47}, - [1830] = {.lex_state = 47}, - [1831] = {.lex_state = 47}, - [1832] = {.lex_state = 47}, - [1833] = {.lex_state = 47}, - [1834] = {.lex_state = 45}, - [1835] = {.lex_state = 47}, - [1836] = {.lex_state = 47}, - [1837] = {.lex_state = 47}, - [1838] = {.lex_state = 41}, - [1839] = {.lex_state = 45}, - [1840] = {.lex_state = 45}, - [1841] = {.lex_state = 51}, - [1842] = {.lex_state = 41}, - [1843] = {.lex_state = 41}, - [1844] = {.lex_state = 41}, - [1845] = {.lex_state = 41}, - [1846] = {.lex_state = 41}, - [1847] = {.lex_state = 41}, - [1848] = {.lex_state = 41}, - [1849] = {.lex_state = 41}, - [1850] = {.lex_state = 41}, - [1851] = {.lex_state = 41}, - [1852] = {.lex_state = 41}, - [1853] = {.lex_state = 41}, - [1854] = {.lex_state = 41}, - [1855] = {.lex_state = 41}, - [1856] = {.lex_state = 41}, - [1857] = {.lex_state = 41}, - [1858] = {.lex_state = 41}, - [1859] = {.lex_state = 41}, - [1860] = {.lex_state = 41}, - [1861] = {.lex_state = 41}, - [1862] = {.lex_state = 45}, - [1863] = {.lex_state = 41}, - [1864] = {.lex_state = 41}, - [1865] = {.lex_state = 41}, - [1866] = {.lex_state = 41}, - [1867] = {.lex_state = 41}, - [1868] = {.lex_state = 41}, - [1869] = {.lex_state = 41}, - [1870] = {.lex_state = 41}, - [1871] = {.lex_state = 41}, - [1872] = {.lex_state = 41}, - [1873] = {.lex_state = 41}, - [1874] = {.lex_state = 41}, - [1875] = {.lex_state = 41}, - [1876] = {.lex_state = 41}, - [1877] = {.lex_state = 41}, - [1878] = {.lex_state = 41}, - [1879] = {.lex_state = 41}, - [1880] = {.lex_state = 41}, - [1881] = {.lex_state = 41}, - [1882] = {.lex_state = 41}, - [1883] = {.lex_state = 41}, - [1884] = {.lex_state = 41}, - [1885] = {.lex_state = 41}, - [1886] = {.lex_state = 41}, - [1887] = {.lex_state = 41}, - [1888] = {.lex_state = 41}, - [1889] = {.lex_state = 41}, - [1890] = {.lex_state = 41}, - [1891] = {.lex_state = 41}, - [1892] = {.lex_state = 41}, - [1893] = {.lex_state = 44}, - [1894] = {.lex_state = 41}, - [1895] = {.lex_state = 41}, - [1896] = {.lex_state = 41}, - [1897] = {.lex_state = 40}, - [1898] = {.lex_state = 45}, - [1899] = {.lex_state = 45}, - [1900] = {.lex_state = 46}, - [1901] = {.lex_state = 40}, - [1902] = {.lex_state = 40}, - [1903] = {.lex_state = 40}, - [1904] = {.lex_state = 40}, - [1905] = {.lex_state = 40}, - [1906] = {.lex_state = 40}, - [1907] = {.lex_state = 40}, - [1908] = {.lex_state = 40}, - [1909] = {.lex_state = 40}, - [1910] = {.lex_state = 40}, - [1911] = {.lex_state = 40}, - [1912] = {.lex_state = 40}, - [1913] = {.lex_state = 40}, - [1914] = {.lex_state = 40}, - [1915] = {.lex_state = 40}, - [1916] = {.lex_state = 40}, - [1917] = {.lex_state = 40}, - [1918] = {.lex_state = 40}, - [1919] = {.lex_state = 40}, - [1920] = {.lex_state = 40}, - [1921] = {.lex_state = 44}, - [1922] = {.lex_state = 40}, - [1923] = {.lex_state = 40}, - [1924] = {.lex_state = 40}, - [1925] = {.lex_state = 40}, - [1926] = {.lex_state = 40}, - [1927] = {.lex_state = 40}, - [1928] = {.lex_state = 40}, - [1929] = {.lex_state = 40}, - [1930] = {.lex_state = 40}, - [1931] = {.lex_state = 40}, - [1932] = {.lex_state = 40}, - [1933] = {.lex_state = 40}, - [1934] = {.lex_state = 40}, - [1935] = {.lex_state = 40}, - [1936] = {.lex_state = 40}, - [1937] = {.lex_state = 40}, - [1938] = {.lex_state = 40}, - [1939] = {.lex_state = 40}, - [1940] = {.lex_state = 40}, - [1941] = {.lex_state = 40}, - [1942] = {.lex_state = 40}, - [1943] = {.lex_state = 40}, - [1944] = {.lex_state = 40}, - [1945] = {.lex_state = 40}, - [1946] = {.lex_state = 40}, - [1947] = {.lex_state = 40}, - [1948] = {.lex_state = 40}, - [1949] = {.lex_state = 40}, - [1950] = {.lex_state = 40}, - [1951] = {.lex_state = 40}, - [1952] = {.lex_state = 44}, - [1953] = {.lex_state = 40}, - [1954] = {.lex_state = 40}, - [1955] = {.lex_state = 40}, - [1956] = {.lex_state = 43}, - [1957] = {.lex_state = 40}, - [1958] = {.lex_state = 40}, - [1959] = {.lex_state = 47}, - [1960] = {.lex_state = 41}, - [1961] = {.lex_state = 41}, - [1962] = {.lex_state = 41}, - [1963] = {.lex_state = 40}, - [1964] = {.lex_state = 91}, - [1965] = {.lex_state = 91}, - [1966] = {.lex_state = 91}, - [1967] = {.lex_state = 44}, - [1968] = {.lex_state = 50}, - [1969] = {.lex_state = 44}, - [1970] = {.lex_state = 44}, - [1971] = {.lex_state = 91}, - [1972] = {.lex_state = 91}, - [1973] = {.lex_state = 44}, - [1974] = {.lex_state = 91}, - [1975] = {.lex_state = 44}, - [1976] = {.lex_state = 44}, - [1977] = {.lex_state = 44}, - [1978] = {.lex_state = 44}, - [1979] = {.lex_state = 91}, - [1980] = {.lex_state = 91}, - [1981] = {.lex_state = 91}, - [1982] = {.lex_state = 44}, - [1983] = {.lex_state = 44}, - [1984] = {.lex_state = 91}, - [1985] = {.lex_state = 91}, - [1986] = {.lex_state = 91}, - [1987] = {.lex_state = 91}, - [1988] = {.lex_state = 44}, - [1989] = {.lex_state = 44}, - [1990] = {.lex_state = 44}, - [1991] = {.lex_state = 44}, - [1992] = {.lex_state = 44}, - [1993] = {.lex_state = 44}, - [1994] = {.lex_state = 44}, - [1995] = {.lex_state = 91}, - [1996] = {.lex_state = 91}, - [1997] = {.lex_state = 91}, - [1998] = {.lex_state = 56}, - [1999] = {.lex_state = 44}, - [2000] = {.lex_state = 91}, - [2001] = {.lex_state = 91}, - [2002] = {.lex_state = 91}, - [2003] = {.lex_state = 44}, - [2004] = {.lex_state = 44}, - [2005] = {.lex_state = 44}, - [2006] = {.lex_state = 44}, - [2007] = {.lex_state = 44}, - [2008] = {.lex_state = 44}, - [2009] = {.lex_state = 44}, - [2010] = {.lex_state = 44}, - [2011] = {.lex_state = 44}, - [2012] = {.lex_state = 42}, - [2013] = {.lex_state = 91}, - [2014] = {.lex_state = 91}, - [2015] = {.lex_state = 44}, - [2016] = {.lex_state = 44}, - [2017] = {.lex_state = 50}, - [2018] = {.lex_state = 44}, - [2019] = {.lex_state = 91}, - [2020] = {.lex_state = 91}, - [2021] = {.lex_state = 91}, - [2022] = {.lex_state = 91}, - [2023] = {.lex_state = 91}, - [2024] = {.lex_state = 91}, - [2025] = {.lex_state = 44}, - [2026] = {.lex_state = 44}, - [2027] = {.lex_state = 44}, - [2028] = {.lex_state = 56}, - [2029] = {.lex_state = 91}, - [2030] = {.lex_state = 91}, - [2031] = {.lex_state = 91}, - [2032] = {.lex_state = 44}, - [2033] = {.lex_state = 44}, - [2034] = {.lex_state = 44}, - [2035] = {.lex_state = 44}, - [2036] = {.lex_state = 44}, - [2037] = {.lex_state = 44}, - [2038] = {.lex_state = 44}, - [2039] = {.lex_state = 44}, - [2040] = {.lex_state = 91}, - [2041] = {.lex_state = 91}, - [2042] = {.lex_state = 91}, - [2043] = {.lex_state = 44}, - [2044] = {.lex_state = 44}, - [2045] = {.lex_state = 91}, - [2046] = {.lex_state = 91}, - [2047] = {.lex_state = 91}, - [2048] = {.lex_state = 44}, - [2049] = {.lex_state = 44}, - [2050] = {.lex_state = 44}, - [2051] = {.lex_state = 44}, - [2052] = {.lex_state = 44}, - [2053] = {.lex_state = 44}, - [2054] = {.lex_state = 38}, - [2055] = {.lex_state = 44}, - [2056] = {.lex_state = 48}, - [2057] = {.lex_state = 56}, - [2058] = {.lex_state = 91}, - [2059] = {.lex_state = 91}, - [2060] = {.lex_state = 91}, - [2061] = {.lex_state = 49}, - [2062] = {.lex_state = 91}, - [2063] = {.lex_state = 42}, - [2064] = {.lex_state = 49}, - [2065] = {.lex_state = 91}, - [2066] = {.lex_state = 91}, - [2067] = {.lex_state = 91}, - [2068] = {.lex_state = 91}, - [2069] = {.lex_state = 91}, - [2070] = {.lex_state = 49}, - [2071] = {.lex_state = 48}, - [2072] = {.lex_state = 38}, - [2073] = {.lex_state = 48}, - [2074] = {.lex_state = 91}, - [2075] = {.lex_state = 91}, - [2076] = {.lex_state = 91}, - [2077] = {.lex_state = 45}, - [2078] = {.lex_state = 38}, - [2079] = {.lex_state = 38}, - [2080] = {.lex_state = 38}, - [2081] = {.lex_state = 45}, - [2082] = {.lex_state = 38}, - [2083] = {.lex_state = 38}, - [2084] = {.lex_state = 38}, - [2085] = {.lex_state = 91}, - [2086] = {.lex_state = 38}, - [2087] = {.lex_state = 91}, - [2088] = {.lex_state = 91}, - [2089] = {.lex_state = 38}, - [2090] = {.lex_state = 38}, - [2091] = {.lex_state = 91}, - [2092] = {.lex_state = 91}, - [2093] = {.lex_state = 91}, - [2094] = {.lex_state = 38}, - [2095] = {.lex_state = 38}, - [2096] = {.lex_state = 38}, - [2097] = {.lex_state = 38}, - [2098] = {.lex_state = 38}, - [2099] = {.lex_state = 38}, - [2100] = {.lex_state = 38}, - [2101] = {.lex_state = 38}, - [2102] = {.lex_state = 38}, - [2103] = {.lex_state = 38}, - [2104] = {.lex_state = 91}, - [2105] = {.lex_state = 91}, - [2106] = {.lex_state = 91}, - [2107] = {.lex_state = 38}, - [2108] = {.lex_state = 42}, - [2109] = {.lex_state = 38}, - [2110] = {.lex_state = 38}, - [2111] = {.lex_state = 41}, - [2112] = {.lex_state = 42}, - [2113] = {.lex_state = 42}, - [2114] = {.lex_state = 42}, - [2115] = {.lex_state = 42}, - [2116] = {.lex_state = 38}, - [2117] = {.lex_state = 38}, - [2118] = {.lex_state = 38}, - [2119] = {.lex_state = 38}, - [2120] = {.lex_state = 42}, - [2121] = {.lex_state = 42}, - [2122] = {.lex_state = 42}, - [2123] = {.lex_state = 38}, - [2124] = {.lex_state = 38}, - [2125] = {.lex_state = 38}, - [2126] = {.lex_state = 38}, - [2127] = {.lex_state = 38}, - [2128] = {.lex_state = 38}, - [2129] = {.lex_state = 38}, - [2130] = {.lex_state = 45}, - [2131] = {.lex_state = 42}, - [2132] = {.lex_state = 91}, - [2133] = {.lex_state = 42}, - [2134] = {.lex_state = 38}, - [2135] = {.lex_state = 42}, - [2136] = {.lex_state = 42}, - [2137] = {.lex_state = 42}, - [2138] = {.lex_state = 42}, - [2139] = {.lex_state = 38}, - [2140] = {.lex_state = 38}, - [2141] = {.lex_state = 38}, - [2142] = {.lex_state = 44}, - [2143] = {.lex_state = 38}, - [2144] = {.lex_state = 38}, - [2145] = {.lex_state = 38}, - [2146] = {.lex_state = 38}, - [2147] = {.lex_state = 38}, - [2148] = {.lex_state = 38}, - [2149] = {.lex_state = 38}, - [2150] = {.lex_state = 42}, - [2151] = {.lex_state = 42}, - [2152] = {.lex_state = 38}, - [2153] = {.lex_state = 42}, - [2154] = {.lex_state = 42}, - [2155] = {.lex_state = 38}, - [2156] = {.lex_state = 38}, - [2157] = {.lex_state = 42}, - [2158] = {.lex_state = 42}, - [2159] = {.lex_state = 44}, - [2160] = {.lex_state = 42}, - [2161] = {.lex_state = 38}, - [2162] = {.lex_state = 38}, - [2163] = {.lex_state = 38}, - [2164] = {.lex_state = 38}, - [2165] = {.lex_state = 42}, - [2166] = {.lex_state = 42}, - [2167] = {.lex_state = 42}, - [2168] = {.lex_state = 38}, - [2169] = {.lex_state = 38}, - [2170] = {.lex_state = 42}, - [2171] = {.lex_state = 38}, - [2172] = {.lex_state = 42}, - [2173] = {.lex_state = 42}, - [2174] = {.lex_state = 42}, - [2175] = {.lex_state = 42}, - [2176] = {.lex_state = 44}, - [2177] = {.lex_state = 42}, - [2178] = {.lex_state = 42}, - [2179] = {.lex_state = 42}, - [2180] = {.lex_state = 42}, - [2181] = {.lex_state = 42}, - [2182] = {.lex_state = 42}, - [2183] = {.lex_state = 42}, - [2184] = {.lex_state = 42}, - [2185] = {.lex_state = 42}, - [2186] = {.lex_state = 42}, - [2187] = {.lex_state = 42}, - [2188] = {.lex_state = 42}, - [2189] = {.lex_state = 42}, - [2190] = {.lex_state = 42}, - [2191] = {.lex_state = 42}, - [2192] = {.lex_state = 42}, - [2193] = {.lex_state = 42}, - [2194] = {.lex_state = 42}, - [2195] = {.lex_state = 42}, - [2196] = {.lex_state = 42}, - [2197] = {.lex_state = 42}, - [2198] = {.lex_state = 42}, - [2199] = {.lex_state = 42}, - [2200] = {.lex_state = 42}, - [2201] = {.lex_state = 42}, - [2202] = {.lex_state = 2}, - [2203] = {.lex_state = 2}, - [2204] = {.lex_state = 2}, - [2205] = {.lex_state = 2}, - [2206] = {.lex_state = 2}, - [2207] = {.lex_state = 2}, - [2208] = {.lex_state = 2}, - [2209] = {.lex_state = 2}, - [2210] = {.lex_state = 2}, - [2211] = {.lex_state = 2}, - [2212] = {.lex_state = 2}, - [2213] = {.lex_state = 2}, - [2214] = {.lex_state = 2}, - [2215] = {.lex_state = 2}, - [2216] = {.lex_state = 2}, - [2217] = {.lex_state = 2}, - [2218] = {.lex_state = 2}, - [2219] = {.lex_state = 2}, - [2220] = {.lex_state = 2}, - [2221] = {.lex_state = 2}, - [2222] = {.lex_state = 2}, - [2223] = {.lex_state = 2}, - [2224] = {.lex_state = 2}, - [2225] = {.lex_state = 2}, - [2226] = {.lex_state = 2}, - [2227] = {.lex_state = 2}, - [2228] = {.lex_state = 2}, - [2229] = {.lex_state = 2}, - [2230] = {.lex_state = 2}, + [1] = {.lex_state = 94}, + [2] = {.lex_state = 5}, + [3] = {.lex_state = 5}, + [4] = {.lex_state = 5}, + [5] = {.lex_state = 5}, + [6] = {.lex_state = 5}, + [7] = {.lex_state = 5}, + [8] = {.lex_state = 5}, + [9] = {.lex_state = 5}, + [10] = {.lex_state = 5}, + [11] = {.lex_state = 5}, + [12] = {.lex_state = 5}, + [13] = {.lex_state = 5}, + [14] = {.lex_state = 5}, + [15] = {.lex_state = 5}, + [16] = {.lex_state = 5}, + [17] = {.lex_state = 5}, + [18] = {.lex_state = 5}, + [19] = {.lex_state = 5}, + [20] = {.lex_state = 5}, + [21] = {.lex_state = 5}, + [22] = {.lex_state = 5}, + [23] = {.lex_state = 5}, + [24] = {.lex_state = 5}, + [25] = {.lex_state = 5}, + [26] = {.lex_state = 5}, + [27] = {.lex_state = 5}, + [28] = {.lex_state = 5}, + [29] = {.lex_state = 5}, + [30] = {.lex_state = 5}, + [31] = {.lex_state = 5}, + [32] = {.lex_state = 5}, + [33] = {.lex_state = 5}, + [34] = {.lex_state = 5}, + [35] = {.lex_state = 5}, + [36] = {.lex_state = 5}, + [37] = {.lex_state = 5}, + [38] = {.lex_state = 5}, + [39] = {.lex_state = 5}, + [40] = {.lex_state = 5}, + [41] = {.lex_state = 5}, + [42] = {.lex_state = 5}, + [43] = {.lex_state = 5}, + [44] = {.lex_state = 5}, + [45] = {.lex_state = 5}, + [46] = {.lex_state = 5}, + [47] = {.lex_state = 5}, + [48] = {.lex_state = 5}, + [49] = {.lex_state = 5}, + [50] = {.lex_state = 5}, + [51] = {.lex_state = 5}, + [52] = {.lex_state = 5}, + [53] = {.lex_state = 5}, + [54] = {.lex_state = 5}, + [55] = {.lex_state = 5}, + [56] = {.lex_state = 5}, + [57] = {.lex_state = 5}, + [58] = {.lex_state = 5}, + [59] = {.lex_state = 5}, + [60] = {.lex_state = 57}, + [61] = {.lex_state = 57}, + [62] = {.lex_state = 60}, + [63] = {.lex_state = 61}, + [64] = {.lex_state = 61}, + [65] = {.lex_state = 61}, + [66] = {.lex_state = 62}, + [67] = {.lex_state = 61}, + [68] = {.lex_state = 63}, + [69] = {.lex_state = 61}, + [70] = {.lex_state = 61}, + [71] = {.lex_state = 63}, + [72] = {.lex_state = 61}, + [73] = {.lex_state = 64}, + [74] = {.lex_state = 65}, + [75] = {.lex_state = 61}, + [76] = {.lex_state = 60}, + [77] = {.lex_state = 66}, + [78] = {.lex_state = 61}, + [79] = {.lex_state = 67}, + [80] = {.lex_state = 62}, + [81] = {.lex_state = 67}, + [82] = {.lex_state = 61}, + [83] = {.lex_state = 67}, + [84] = {.lex_state = 61}, + [85] = {.lex_state = 61}, + [86] = {.lex_state = 61}, + [87] = {.lex_state = 63}, + [88] = {.lex_state = 61}, + [89] = {.lex_state = 68}, + [90] = {.lex_state = 65}, + [91] = {.lex_state = 61}, + [92] = {.lex_state = 61}, + [93] = {.lex_state = 64}, + [94] = {.lex_state = 64}, + [95] = {.lex_state = 68}, + [96] = {.lex_state = 60}, + [97] = {.lex_state = 61}, + [98] = {.lex_state = 68}, + [99] = {.lex_state = 61}, + [100] = {.lex_state = 61}, + [101] = {.lex_state = 62}, + [102] = {.lex_state = 61}, + [103] = {.lex_state = 61}, + [104] = {.lex_state = 66}, + [105] = {.lex_state = 61}, + [106] = {.lex_state = 65}, + [107] = {.lex_state = 61}, + [108] = {.lex_state = 61}, + [109] = {.lex_state = 61}, + [110] = {.lex_state = 57}, + [111] = {.lex_state = 61}, + [112] = {.lex_state = 66}, + [113] = {.lex_state = 61}, + [114] = {.lex_state = 61}, + [115] = {.lex_state = 61}, + [116] = {.lex_state = 61}, + [117] = {.lex_state = 41}, + [118] = {.lex_state = 41}, + [119] = {.lex_state = 41}, + [120] = {.lex_state = 41}, + [121] = {.lex_state = 41}, + [122] = {.lex_state = 41}, + [123] = {.lex_state = 41}, + [124] = {.lex_state = 41}, + [125] = {.lex_state = 41}, + [126] = {.lex_state = 41}, + [127] = {.lex_state = 41}, + [128] = {.lex_state = 41}, + [129] = {.lex_state = 41}, + [130] = {.lex_state = 41}, + [131] = {.lex_state = 41}, + [132] = {.lex_state = 41}, + [133] = {.lex_state = 41}, + [134] = {.lex_state = 41}, + [135] = {.lex_state = 41}, + [136] = {.lex_state = 41}, + [137] = {.lex_state = 41}, + [138] = {.lex_state = 41}, + [139] = {.lex_state = 41}, + [140] = {.lex_state = 41}, + [141] = {.lex_state = 41}, + [142] = {.lex_state = 41}, + [143] = {.lex_state = 41}, + [144] = {.lex_state = 41}, + [145] = {.lex_state = 41}, + [146] = {.lex_state = 41}, + [147] = {.lex_state = 41}, + [148] = {.lex_state = 40}, + [149] = {.lex_state = 40}, + [150] = {.lex_state = 43}, + [151] = {.lex_state = 43}, + [152] = {.lex_state = 43}, + [153] = {.lex_state = 43}, + [154] = {.lex_state = 44}, + [155] = {.lex_state = 40}, + [156] = {.lex_state = 43}, + [157] = {.lex_state = 43}, + [158] = {.lex_state = 43}, + [159] = {.lex_state = 40}, + [160] = {.lex_state = 43}, + [161] = {.lex_state = 44}, + [162] = {.lex_state = 43}, + [163] = {.lex_state = 43}, + [164] = {.lex_state = 43}, + [165] = {.lex_state = 43}, + [166] = {.lex_state = 40}, + [167] = {.lex_state = 44}, + [168] = {.lex_state = 44}, + [169] = {.lex_state = 44}, + [170] = {.lex_state = 40}, + [171] = {.lex_state = 43}, + [172] = {.lex_state = 43}, + [173] = {.lex_state = 40}, + [174] = {.lex_state = 43}, + [175] = {.lex_state = 44}, + [176] = {.lex_state = 45}, + [177] = {.lex_state = 43}, + [178] = {.lex_state = 44}, + [179] = {.lex_state = 40}, + [180] = {.lex_state = 46}, + [181] = {.lex_state = 43}, + [182] = {.lex_state = 43}, + [183] = {.lex_state = 43}, + [184] = {.lex_state = 43}, + [185] = {.lex_state = 40}, + [186] = {.lex_state = 44}, + [187] = {.lex_state = 44}, + [188] = {.lex_state = 40}, + [189] = {.lex_state = 40}, + [190] = {.lex_state = 44}, + [191] = {.lex_state = 40}, + [192] = {.lex_state = 43}, + [193] = {.lex_state = 43}, + [194] = {.lex_state = 43}, + [195] = {.lex_state = 47}, + [196] = {.lex_state = 43}, + [197] = {.lex_state = 44}, + [198] = {.lex_state = 40}, + [199] = {.lex_state = 44}, + [200] = {.lex_state = 42}, + [201] = {.lex_state = 43}, + [202] = {.lex_state = 42}, + [203] = {.lex_state = 40}, + [204] = {.lex_state = 44}, + [205] = {.lex_state = 43}, + [206] = {.lex_state = 43}, + [207] = {.lex_state = 43}, + [208] = {.lex_state = 43}, + [209] = {.lex_state = 43}, + [210] = {.lex_state = 43}, + [211] = {.lex_state = 44}, + [212] = {.lex_state = 43}, + [213] = {.lex_state = 43}, + [214] = {.lex_state = 44}, + [215] = {.lex_state = 40}, + [216] = {.lex_state = 47}, + [217] = {.lex_state = 43}, + [218] = {.lex_state = 44}, + [219] = {.lex_state = 40}, + [220] = {.lex_state = 40}, + [221] = {.lex_state = 43}, + [222] = {.lex_state = 43}, + [223] = {.lex_state = 43}, + [224] = {.lex_state = 43}, + [225] = {.lex_state = 43}, + [226] = {.lex_state = 40}, + [227] = {.lex_state = 40}, + [228] = {.lex_state = 44}, + [229] = {.lex_state = 44}, + [230] = {.lex_state = 40}, + [231] = {.lex_state = 43}, + [232] = {.lex_state = 40}, + [233] = {.lex_state = 44}, + [234] = {.lex_state = 43}, + [235] = {.lex_state = 44}, + [236] = {.lex_state = 43}, + [237] = {.lex_state = 43}, + [238] = {.lex_state = 43}, + [239] = {.lex_state = 43}, + [240] = {.lex_state = 44}, + [241] = {.lex_state = 40}, + [242] = {.lex_state = 40}, + [243] = {.lex_state = 43}, + [244] = {.lex_state = 43}, + [245] = {.lex_state = 43}, + [246] = {.lex_state = 43}, + [247] = {.lex_state = 44}, + [248] = {.lex_state = 40}, + [249] = {.lex_state = 43}, + [250] = {.lex_state = 44}, + [251] = {.lex_state = 94}, + [252] = {.lex_state = 40}, + [253] = {.lex_state = 43}, + [254] = {.lex_state = 43}, + [255] = {.lex_state = 48}, + [256] = {.lex_state = 43}, + [257] = {.lex_state = 43}, + [258] = {.lex_state = 43}, + [259] = {.lex_state = 49}, + [260] = {.lex_state = 40}, + [261] = {.lex_state = 43}, + [262] = {.lex_state = 43}, + [263] = {.lex_state = 40}, + [264] = {.lex_state = 44}, + [265] = {.lex_state = 44}, + [266] = {.lex_state = 40}, + [267] = {.lex_state = 40}, + [268] = {.lex_state = 44}, + [269] = {.lex_state = 43}, + [270] = {.lex_state = 43}, + [271] = {.lex_state = 49}, + [272] = {.lex_state = 43}, + [273] = {.lex_state = 44}, + [274] = {.lex_state = 43}, + [275] = {.lex_state = 40}, + [276] = {.lex_state = 40}, + [277] = {.lex_state = 50}, + [278] = {.lex_state = 43}, + [279] = {.lex_state = 43}, + [280] = {.lex_state = 43}, + [281] = {.lex_state = 43}, + [282] = {.lex_state = 43}, + [283] = {.lex_state = 40}, + [284] = {.lex_state = 43}, + [285] = {.lex_state = 43}, + [286] = {.lex_state = 44}, + [287] = {.lex_state = 40}, + [288] = {.lex_state = 44}, + [289] = {.lex_state = 44}, + [290] = {.lex_state = 40}, + [291] = {.lex_state = 44}, + [292] = {.lex_state = 50}, + [293] = {.lex_state = 43}, + [294] = {.lex_state = 43}, + [295] = {.lex_state = 46}, + [296] = {.lex_state = 43}, + [297] = {.lex_state = 43}, + [298] = {.lex_state = 44}, + [299] = {.lex_state = 40}, + [300] = {.lex_state = 44}, + [301] = {.lex_state = 40}, + [302] = {.lex_state = 40}, + [303] = {.lex_state = 44}, + [304] = {.lex_state = 44}, + [305] = {.lex_state = 44}, + [306] = {.lex_state = 43}, + [307] = {.lex_state = 40}, + [308] = {.lex_state = 43}, + [309] = {.lex_state = 46}, + [310] = {.lex_state = 43}, + [311] = {.lex_state = 40}, + [312] = {.lex_state = 43}, + [313] = {.lex_state = 44}, + [314] = {.lex_state = 43}, + [315] = {.lex_state = 43}, + [316] = {.lex_state = 43}, + [317] = {.lex_state = 43}, + [318] = {.lex_state = 44}, + [319] = {.lex_state = 40}, + [320] = {.lex_state = 43}, + [321] = {.lex_state = 44}, + [322] = {.lex_state = 44}, + [323] = {.lex_state = 40}, + [324] = {.lex_state = 40}, + [325] = {.lex_state = 43}, + [326] = {.lex_state = 43}, + [327] = {.lex_state = 43}, + [328] = {.lex_state = 43}, + [329] = {.lex_state = 44}, + [330] = {.lex_state = 51}, + [331] = {.lex_state = 52}, + [332] = {.lex_state = 43}, + [333] = {.lex_state = 53}, + [334] = {.lex_state = 45}, + [335] = {.lex_state = 45}, + [336] = {.lex_state = 49}, + [337] = {.lex_state = 43}, + [338] = {.lex_state = 43}, + [339] = {.lex_state = 43}, + [340] = {.lex_state = 54}, + [341] = {.lex_state = 48}, + [342] = {.lex_state = 48}, + [343] = {.lex_state = 43}, + [344] = {.lex_state = 42}, + [345] = {.lex_state = 52}, + [346] = {.lex_state = 43}, + [347] = {.lex_state = 44}, + [348] = {.lex_state = 51}, + [349] = {.lex_state = 59}, + [350] = {.lex_state = 44}, + [351] = {.lex_state = 44}, + [352] = {.lex_state = 44}, + [353] = {.lex_state = 53}, + [354] = {.lex_state = 43}, + [355] = {.lex_state = 53}, + [356] = {.lex_state = 40}, + [357] = {.lex_state = 55}, + [358] = {.lex_state = 43}, + [359] = {.lex_state = 40}, + [360] = {.lex_state = 43}, + [361] = {.lex_state = 54}, + [362] = {.lex_state = 51}, + [363] = {.lex_state = 43}, + [364] = {.lex_state = 54}, + [365] = {.lex_state = 47}, + [366] = {.lex_state = 43}, + [367] = {.lex_state = 43}, + [368] = {.lex_state = 56}, + [369] = {.lex_state = 59}, + [370] = {.lex_state = 40}, + [371] = {.lex_state = 43}, + [372] = {.lex_state = 56}, + [373] = {.lex_state = 43}, + [374] = {.lex_state = 59}, + [375] = {.lex_state = 44}, + [376] = {.lex_state = 43}, + [377] = {.lex_state = 52}, + [378] = {.lex_state = 55}, + [379] = {.lex_state = 40}, + [380] = {.lex_state = 40}, + [381] = {.lex_state = 40}, + [382] = {.lex_state = 44}, + [383] = {.lex_state = 43}, + [384] = {.lex_state = 55}, + [385] = {.lex_state = 44}, + [386] = {.lex_state = 40}, + [387] = {.lex_state = 44}, + [388] = {.lex_state = 44}, + [389] = {.lex_state = 40}, + [390] = {.lex_state = 50}, + [391] = {.lex_state = 43}, + [392] = {.lex_state = 43}, + [393] = {.lex_state = 43}, + [394] = {.lex_state = 44}, + [395] = {.lex_state = 44}, + [396] = {.lex_state = 40}, + [397] = {.lex_state = 43}, + [398] = {.lex_state = 40}, + [399] = {.lex_state = 44}, + [400] = {.lex_state = 56}, + [401] = {.lex_state = 58}, + [402] = {.lex_state = 44}, + [403] = {.lex_state = 44}, + [404] = {.lex_state = 40}, + [405] = {.lex_state = 40}, + [406] = {.lex_state = 44}, + [407] = {.lex_state = 43}, + [408] = {.lex_state = 43}, + [409] = {.lex_state = 43}, + [410] = {.lex_state = 43}, + [411] = {.lex_state = 43}, + [412] = {.lex_state = 44}, + [413] = {.lex_state = 40}, + [414] = {.lex_state = 40}, + [415] = {.lex_state = 44}, + [416] = {.lex_state = 40}, + [417] = {.lex_state = 43}, + [418] = {.lex_state = 58}, + [419] = {.lex_state = 44}, + [420] = {.lex_state = 40}, + [421] = {.lex_state = 43}, + [422] = {.lex_state = 94}, + [423] = {.lex_state = 43}, + [424] = {.lex_state = 58}, + [425] = {.lex_state = 43}, + [426] = {.lex_state = 43}, + [427] = {.lex_state = 43}, + [428] = {.lex_state = 43}, + [429] = {.lex_state = 40}, + [430] = {.lex_state = 27}, + [431] = {.lex_state = 31}, + [432] = {.lex_state = 25}, + [433] = {.lex_state = 21}, + [434] = {.lex_state = 28}, + [435] = {.lex_state = 30}, + [436] = {.lex_state = 29}, + [437] = {.lex_state = 32}, + [438] = {.lex_state = 24}, + [439] = {.lex_state = 26}, + [440] = {.lex_state = 27}, + [441] = {.lex_state = 25}, + [442] = {.lex_state = 24}, + [443] = {.lex_state = 30}, + [444] = {.lex_state = 31}, + [445] = {.lex_state = 21}, + [446] = {.lex_state = 32}, + [447] = {.lex_state = 28}, + [448] = {.lex_state = 29}, + [449] = {.lex_state = 26}, + [450] = {.lex_state = 27}, + [451] = {.lex_state = 29}, + [452] = {.lex_state = 28}, + [453] = {.lex_state = 32}, + [454] = {.lex_state = 26}, + [455] = {.lex_state = 31}, + [456] = {.lex_state = 30}, + [457] = {.lex_state = 25}, + [458] = {.lex_state = 21}, + [459] = {.lex_state = 24}, + [460] = {.lex_state = 18}, + [461] = {.lex_state = 22}, + [462] = {.lex_state = 16}, + [463] = {.lex_state = 93}, + [464] = {.lex_state = 20}, + [465] = {.lex_state = 15}, + [466] = {.lex_state = 14}, + [467] = {.lex_state = 19}, + [468] = {.lex_state = 23}, + [469] = {.lex_state = 17}, + [470] = {.lex_state = 12}, + [471] = {.lex_state = 10}, + [472] = {.lex_state = 9}, + [473] = {.lex_state = 13}, + [474] = {.lex_state = 4}, + [475] = {.lex_state = 7}, + [476] = {.lex_state = 11}, + [477] = {.lex_state = 6}, + [478] = {.lex_state = 8}, + [479] = {.lex_state = 68}, + [480] = {.lex_state = 65}, + [481] = {.lex_state = 61}, + [482] = {.lex_state = 61}, + [483] = {.lex_state = 61}, + [484] = {.lex_state = 61}, + [485] = {.lex_state = 61}, + [486] = {.lex_state = 61}, + [487] = {.lex_state = 61}, + [488] = {.lex_state = 57}, + [489] = {.lex_state = 61}, + [490] = {.lex_state = 57}, + [491] = {.lex_state = 61}, + [492] = {.lex_state = 57}, + [493] = {.lex_state = 63}, + [494] = {.lex_state = 57}, + [495] = {.lex_state = 60}, + [496] = {.lex_state = 61}, + [497] = {.lex_state = 61}, + [498] = {.lex_state = 61}, + [499] = {.lex_state = 57}, + [500] = {.lex_state = 61}, + [501] = {.lex_state = 61}, + [502] = {.lex_state = 57}, + [503] = {.lex_state = 61}, + [504] = {.lex_state = 61}, + [505] = {.lex_state = 57}, + [506] = {.lex_state = 61}, + [507] = {.lex_state = 61}, + [508] = {.lex_state = 61}, + [509] = {.lex_state = 61}, + [510] = {.lex_state = 61}, + [511] = {.lex_state = 61}, + [512] = {.lex_state = 61}, + [513] = {.lex_state = 57}, + [514] = {.lex_state = 61}, + [515] = {.lex_state = 61}, + [516] = {.lex_state = 61}, + [517] = {.lex_state = 63}, + [518] = {.lex_state = 61}, + [519] = {.lex_state = 57}, + [520] = {.lex_state = 61}, + [521] = {.lex_state = 61}, + [522] = {.lex_state = 61}, + [523] = {.lex_state = 61}, + [524] = {.lex_state = 61}, + [525] = {.lex_state = 61}, + [526] = {.lex_state = 61}, + [527] = {.lex_state = 61}, + [528] = {.lex_state = 61}, + [529] = {.lex_state = 61}, + [530] = {.lex_state = 61}, + [531] = {.lex_state = 61}, + [532] = {.lex_state = 61}, + [533] = {.lex_state = 61}, + [534] = {.lex_state = 61}, + [535] = {.lex_state = 61}, + [536] = {.lex_state = 61}, + [537] = {.lex_state = 61}, + [538] = {.lex_state = 61}, + [539] = {.lex_state = 57}, + [540] = {.lex_state = 57}, + [541] = {.lex_state = 10}, + [542] = {.lex_state = 57}, + [543] = {.lex_state = 61}, + [544] = {.lex_state = 61}, + [545] = {.lex_state = 61}, + [546] = {.lex_state = 61}, + [547] = {.lex_state = 61}, + [548] = {.lex_state = 61}, + [549] = {.lex_state = 66}, + [550] = {.lex_state = 61}, + [551] = {.lex_state = 57}, + [552] = {.lex_state = 57}, + [553] = {.lex_state = 57}, + [554] = {.lex_state = 57}, + [555] = {.lex_state = 57}, + [556] = {.lex_state = 57}, + [557] = {.lex_state = 57}, + [558] = {.lex_state = 57}, + [559] = {.lex_state = 66}, + [560] = {.lex_state = 57}, + [561] = {.lex_state = 57}, + [562] = {.lex_state = 57}, + [563] = {.lex_state = 60}, + [564] = {.lex_state = 57}, + [565] = {.lex_state = 67}, + [566] = {.lex_state = 57}, + [567] = {.lex_state = 57}, + [568] = {.lex_state = 57}, + [569] = {.lex_state = 57}, + [570] = {.lex_state = 57}, + [571] = {.lex_state = 57}, + [572] = {.lex_state = 57}, + [573] = {.lex_state = 93}, + [574] = {.lex_state = 57}, + [575] = {.lex_state = 57}, + [576] = {.lex_state = 57}, + [577] = {.lex_state = 57}, + [578] = {.lex_state = 57}, + [579] = {.lex_state = 57}, + [580] = {.lex_state = 63}, + [581] = {.lex_state = 66}, + [582] = {.lex_state = 57}, + [583] = {.lex_state = 57}, + [584] = {.lex_state = 68}, + [585] = {.lex_state = 57}, + [586] = {.lex_state = 57}, + [587] = {.lex_state = 60}, + [588] = {.lex_state = 57}, + [589] = {.lex_state = 57}, + [590] = {.lex_state = 57}, + [591] = {.lex_state = 57}, + [592] = {.lex_state = 57}, + [593] = {.lex_state = 57}, + [594] = {.lex_state = 57}, + [595] = {.lex_state = 57}, + [596] = {.lex_state = 57}, + [597] = {.lex_state = 57}, + [598] = {.lex_state = 57}, + [599] = {.lex_state = 57}, + [600] = {.lex_state = 57}, + [601] = {.lex_state = 68}, + [602] = {.lex_state = 68}, + [603] = {.lex_state = 68}, + [604] = {.lex_state = 68}, + [605] = {.lex_state = 68}, + [606] = {.lex_state = 61}, + [607] = {.lex_state = 61}, + [608] = {.lex_state = 6}, + [609] = {.lex_state = 68}, + [610] = {.lex_state = 68}, + [611] = {.lex_state = 11}, + [612] = {.lex_state = 68}, + [613] = {.lex_state = 57}, + [614] = {.lex_state = 57}, + [615] = {.lex_state = 7}, + [616] = {.lex_state = 68}, + [617] = {.lex_state = 68}, + [618] = {.lex_state = 68}, + [619] = {.lex_state = 13}, + [620] = {.lex_state = 68}, + [621] = {.lex_state = 9}, + [622] = {.lex_state = 68}, + [623] = {.lex_state = 12}, + [624] = {.lex_state = 68}, + [625] = {.lex_state = 65}, + [626] = {.lex_state = 17}, + [627] = {.lex_state = 68}, + [628] = {.lex_state = 68}, + [629] = {.lex_state = 64}, + [630] = {.lex_state = 18}, + [631] = {.lex_state = 68}, + [632] = {.lex_state = 67}, + [633] = {.lex_state = 68}, + [634] = {.lex_state = 64}, + [635] = {.lex_state = 67}, + [636] = {.lex_state = 23}, + [637] = {.lex_state = 68}, + [638] = {.lex_state = 60}, + [639] = {.lex_state = 19}, + [640] = {.lex_state = 68}, + [641] = {.lex_state = 68}, + [642] = {.lex_state = 65}, + [643] = {.lex_state = 65}, + [644] = {.lex_state = 68}, + [645] = {.lex_state = 65}, + [646] = {.lex_state = 65}, + [647] = {.lex_state = 65}, + [648] = {.lex_state = 65}, + [649] = {.lex_state = 65}, + [650] = {.lex_state = 65}, + [651] = {.lex_state = 65}, + [652] = {.lex_state = 65}, + [653] = {.lex_state = 65}, + [654] = {.lex_state = 65}, + [655] = {.lex_state = 67}, + [656] = {.lex_state = 65}, + [657] = {.lex_state = 62}, + [658] = {.lex_state = 65}, + [659] = {.lex_state = 65}, + [660] = {.lex_state = 65}, + [661] = {.lex_state = 65}, + [662] = {.lex_state = 65}, + [663] = {.lex_state = 65}, + [664] = {.lex_state = 65}, + [665] = {.lex_state = 65}, + [666] = {.lex_state = 65}, + [667] = {.lex_state = 65}, + [668] = {.lex_state = 65}, + [669] = {.lex_state = 65}, + [670] = {.lex_state = 65}, + [671] = {.lex_state = 65}, + [672] = {.lex_state = 65}, + [673] = {.lex_state = 65}, + [674] = {.lex_state = 65}, + [675] = {.lex_state = 65}, + [676] = {.lex_state = 65}, + [677] = {.lex_state = 65}, + [678] = {.lex_state = 68}, + [679] = {.lex_state = 14}, + [680] = {.lex_state = 57}, + [681] = {.lex_state = 65}, + [682] = {.lex_state = 65}, + [683] = {.lex_state = 65}, + [684] = {.lex_state = 65}, + [685] = {.lex_state = 65}, + [686] = {.lex_state = 65}, + [687] = {.lex_state = 65}, + [688] = {.lex_state = 65}, + [689] = {.lex_state = 65}, + [690] = {.lex_state = 65}, + [691] = {.lex_state = 65}, + [692] = {.lex_state = 65}, + [693] = {.lex_state = 65}, + [694] = {.lex_state = 65}, + [695] = {.lex_state = 65}, + [696] = {.lex_state = 68}, + [697] = {.lex_state = 65}, + [698] = {.lex_state = 65}, + [699] = {.lex_state = 65}, + [700] = {.lex_state = 64}, + [701] = {.lex_state = 68}, + [702] = {.lex_state = 65}, + [703] = {.lex_state = 65}, + [704] = {.lex_state = 65}, + [705] = {.lex_state = 63}, + [706] = {.lex_state = 62}, + [707] = {.lex_state = 68}, + [708] = {.lex_state = 68}, + [709] = {.lex_state = 68}, + [710] = {.lex_state = 65}, + [711] = {.lex_state = 64}, + [712] = {.lex_state = 66}, + [713] = {.lex_state = 64}, + [714] = {.lex_state = 64}, + [715] = {.lex_state = 64}, + [716] = {.lex_state = 64}, + [717] = {.lex_state = 64}, + [718] = {.lex_state = 64}, + [719] = {.lex_state = 64}, + [720] = {.lex_state = 64}, + [721] = {.lex_state = 64}, + [722] = {.lex_state = 64}, + [723] = {.lex_state = 64}, + [724] = {.lex_state = 64}, + [725] = {.lex_state = 68}, + [726] = {.lex_state = 64}, + [727] = {.lex_state = 64}, + [728] = {.lex_state = 64}, + [729] = {.lex_state = 64}, + [730] = {.lex_state = 64}, + [731] = {.lex_state = 64}, + [732] = {.lex_state = 64}, + [733] = {.lex_state = 64}, + [734] = {.lex_state = 64}, + [735] = {.lex_state = 64}, + [736] = {.lex_state = 64}, + [737] = {.lex_state = 64}, + [738] = {.lex_state = 64}, + [739] = {.lex_state = 64}, + [740] = {.lex_state = 64}, + [741] = {.lex_state = 62}, + [742] = {.lex_state = 64}, + [743] = {.lex_state = 64}, + [744] = {.lex_state = 64}, + [745] = {.lex_state = 64}, + [746] = {.lex_state = 68}, + [747] = {.lex_state = 15}, + [748] = {.lex_state = 61}, + [749] = {.lex_state = 64}, + [750] = {.lex_state = 64}, + [751] = {.lex_state = 64}, + [752] = {.lex_state = 64}, + [753] = {.lex_state = 64}, + [754] = {.lex_state = 64}, + [755] = {.lex_state = 64}, + [756] = {.lex_state = 64}, + [757] = {.lex_state = 64}, + [758] = {.lex_state = 64}, + [759] = {.lex_state = 64}, + [760] = {.lex_state = 64}, + [761] = {.lex_state = 64}, + [762] = {.lex_state = 64}, + [763] = {.lex_state = 64}, + [764] = {.lex_state = 68}, + [765] = {.lex_state = 64}, + [766] = {.lex_state = 64}, + [767] = {.lex_state = 64}, + [768] = {.lex_state = 65}, + [769] = {.lex_state = 68}, + [770] = {.lex_state = 64}, + [771] = {.lex_state = 64}, + [772] = {.lex_state = 64}, + [773] = {.lex_state = 66}, + [774] = {.lex_state = 64}, + [775] = {.lex_state = 66}, + [776] = {.lex_state = 68}, + [777] = {.lex_state = 68}, + [778] = {.lex_state = 68}, + [779] = {.lex_state = 68}, + [780] = {.lex_state = 64}, + [781] = {.lex_state = 67}, + [782] = {.lex_state = 67}, + [783] = {.lex_state = 67}, + [784] = {.lex_state = 67}, + [785] = {.lex_state = 67}, + [786] = {.lex_state = 67}, + [787] = {.lex_state = 67}, + [788] = {.lex_state = 67}, + [789] = {.lex_state = 67}, + [790] = {.lex_state = 61}, + [791] = {.lex_state = 67}, + [792] = {.lex_state = 67}, + [793] = {.lex_state = 67}, + [794] = {.lex_state = 67}, + [795] = {.lex_state = 67}, + [796] = {.lex_state = 67}, + [797] = {.lex_state = 67}, + [798] = {.lex_state = 67}, + [799] = {.lex_state = 67}, + [800] = {.lex_state = 67}, + [801] = {.lex_state = 67}, + [802] = {.lex_state = 67}, + [803] = {.lex_state = 67}, + [804] = {.lex_state = 67}, + [805] = {.lex_state = 67}, + [806] = {.lex_state = 67}, + [807] = {.lex_state = 66}, + [808] = {.lex_state = 67}, + [809] = {.lex_state = 67}, + [810] = {.lex_state = 67}, + [811] = {.lex_state = 67}, + [812] = {.lex_state = 68}, + [813] = {.lex_state = 22}, + [814] = {.lex_state = 67}, + [815] = {.lex_state = 67}, + [816] = {.lex_state = 67}, + [817] = {.lex_state = 67}, + [818] = {.lex_state = 67}, + [819] = {.lex_state = 67}, + [820] = {.lex_state = 67}, + [821] = {.lex_state = 67}, + [822] = {.lex_state = 67}, + [823] = {.lex_state = 67}, + [824] = {.lex_state = 67}, + [825] = {.lex_state = 67}, + [826] = {.lex_state = 67}, + [827] = {.lex_state = 67}, + [828] = {.lex_state = 67}, + [829] = {.lex_state = 67}, + [830] = {.lex_state = 68}, + [831] = {.lex_state = 67}, + [832] = {.lex_state = 67}, + [833] = {.lex_state = 67}, + [834] = {.lex_state = 67}, + [835] = {.lex_state = 67}, + [836] = {.lex_state = 67}, + [837] = {.lex_state = 63}, + [838] = {.lex_state = 67}, + [839] = {.lex_state = 67}, + [840] = {.lex_state = 68}, + [841] = {.lex_state = 62}, + [842] = {.lex_state = 62}, + [843] = {.lex_state = 68}, + [844] = {.lex_state = 68}, + [845] = {.lex_state = 67}, + [846] = {.lex_state = 60}, + [847] = {.lex_state = 60}, + [848] = {.lex_state = 60}, + [849] = {.lex_state = 68}, + [850] = {.lex_state = 60}, + [851] = {.lex_state = 60}, + [852] = {.lex_state = 60}, + [853] = {.lex_state = 60}, + [854] = {.lex_state = 60}, + [855] = {.lex_state = 60}, + [856] = {.lex_state = 60}, + [857] = {.lex_state = 60}, + [858] = {.lex_state = 60}, + [859] = {.lex_state = 60}, + [860] = {.lex_state = 60}, + [861] = {.lex_state = 60}, + [862] = {.lex_state = 60}, + [863] = {.lex_state = 60}, + [864] = {.lex_state = 60}, + [865] = {.lex_state = 60}, + [866] = {.lex_state = 60}, + [867] = {.lex_state = 60}, + [868] = {.lex_state = 60}, + [869] = {.lex_state = 60}, + [870] = {.lex_state = 63}, + [871] = {.lex_state = 60}, + [872] = {.lex_state = 60}, + [873] = {.lex_state = 60}, + [874] = {.lex_state = 60}, + [875] = {.lex_state = 68}, + [876] = {.lex_state = 16}, + [877] = {.lex_state = 60}, + [878] = {.lex_state = 60}, + [879] = {.lex_state = 68}, + [880] = {.lex_state = 60}, + [881] = {.lex_state = 60}, + [882] = {.lex_state = 60}, + [883] = {.lex_state = 60}, + [884] = {.lex_state = 68}, + [885] = {.lex_state = 60}, + [886] = {.lex_state = 60}, + [887] = {.lex_state = 60}, + [888] = {.lex_state = 60}, + [889] = {.lex_state = 60}, + [890] = {.lex_state = 60}, + [891] = {.lex_state = 60}, + [892] = {.lex_state = 60}, + [893] = {.lex_state = 68}, + [894] = {.lex_state = 60}, + [895] = {.lex_state = 60}, + [896] = {.lex_state = 60}, + [897] = {.lex_state = 60}, + [898] = {.lex_state = 60}, + [899] = {.lex_state = 60}, + [900] = {.lex_state = 60}, + [901] = {.lex_state = 60}, + [902] = {.lex_state = 60}, + [903] = {.lex_state = 68}, + [904] = {.lex_state = 60}, + [905] = {.lex_state = 60}, + [906] = {.lex_state = 68}, + [907] = {.lex_state = 60}, + [908] = {.lex_state = 60}, + [909] = {.lex_state = 68}, + [910] = {.lex_state = 68}, + [911] = {.lex_state = 60}, + [912] = {.lex_state = 63}, + [913] = {.lex_state = 63}, + [914] = {.lex_state = 63}, + [915] = {.lex_state = 65}, + [916] = {.lex_state = 63}, + [917] = {.lex_state = 63}, + [918] = {.lex_state = 63}, + [919] = {.lex_state = 63}, + [920] = {.lex_state = 63}, + [921] = {.lex_state = 63}, + [922] = {.lex_state = 63}, + [923] = {.lex_state = 63}, + [924] = {.lex_state = 63}, + [925] = {.lex_state = 63}, + [926] = {.lex_state = 63}, + [927] = {.lex_state = 63}, + [928] = {.lex_state = 63}, + [929] = {.lex_state = 63}, + [930] = {.lex_state = 63}, + [931] = {.lex_state = 63}, + [932] = {.lex_state = 63}, + [933] = {.lex_state = 60}, + [934] = {.lex_state = 63}, + [935] = {.lex_state = 63}, + [936] = {.lex_state = 63}, + [937] = {.lex_state = 63}, + [938] = {.lex_state = 68}, + [939] = {.lex_state = 20}, + [940] = {.lex_state = 63}, + [941] = {.lex_state = 63}, + [942] = {.lex_state = 63}, + [943] = {.lex_state = 63}, + [944] = {.lex_state = 63}, + [945] = {.lex_state = 68}, + [946] = {.lex_state = 63}, + [947] = {.lex_state = 63}, + [948] = {.lex_state = 63}, + [949] = {.lex_state = 63}, + [950] = {.lex_state = 65}, + [951] = {.lex_state = 63}, + [952] = {.lex_state = 63}, + [953] = {.lex_state = 63}, + [954] = {.lex_state = 63}, + [955] = {.lex_state = 63}, + [956] = {.lex_state = 68}, + [957] = {.lex_state = 63}, + [958] = {.lex_state = 63}, + [959] = {.lex_state = 63}, + [960] = {.lex_state = 63}, + [961] = {.lex_state = 63}, + [962] = {.lex_state = 63}, + [963] = {.lex_state = 66}, + [964] = {.lex_state = 63}, + [965] = {.lex_state = 63}, + [966] = {.lex_state = 68}, + [967] = {.lex_state = 63}, + [968] = {.lex_state = 63}, + [969] = {.lex_state = 61}, + [970] = {.lex_state = 63}, + [971] = {.lex_state = 63}, + [972] = {.lex_state = 63}, + [973] = {.lex_state = 63}, + [974] = {.lex_state = 63}, + [975] = {.lex_state = 68}, + [976] = {.lex_state = 68}, + [977] = {.lex_state = 63}, + [978] = {.lex_state = 66}, + [979] = {.lex_state = 66}, + [980] = {.lex_state = 66}, + [981] = {.lex_state = 64}, + [982] = {.lex_state = 66}, + [983] = {.lex_state = 66}, + [984] = {.lex_state = 66}, + [985] = {.lex_state = 66}, + [986] = {.lex_state = 66}, + [987] = {.lex_state = 66}, + [988] = {.lex_state = 66}, + [989] = {.lex_state = 66}, + [990] = {.lex_state = 66}, + [991] = {.lex_state = 66}, + [992] = {.lex_state = 66}, + [993] = {.lex_state = 66}, + [994] = {.lex_state = 66}, + [995] = {.lex_state = 66}, + [996] = {.lex_state = 66}, + [997] = {.lex_state = 66}, + [998] = {.lex_state = 66}, + [999] = {.lex_state = 66}, + [1000] = {.lex_state = 62}, + [1001] = {.lex_state = 8}, + [1002] = {.lex_state = 62}, + [1003] = {.lex_state = 66}, + [1004] = {.lex_state = 62}, + [1005] = {.lex_state = 62}, + [1006] = {.lex_state = 62}, + [1007] = {.lex_state = 62}, + [1008] = {.lex_state = 62}, + [1009] = {.lex_state = 62}, + [1010] = {.lex_state = 62}, + [1011] = {.lex_state = 62}, + [1012] = {.lex_state = 62}, + [1013] = {.lex_state = 62}, + [1014] = {.lex_state = 62}, + [1015] = {.lex_state = 62}, + [1016] = {.lex_state = 62}, + [1017] = {.lex_state = 62}, + [1018] = {.lex_state = 62}, + [1019] = {.lex_state = 61}, + [1020] = {.lex_state = 62}, + [1021] = {.lex_state = 66}, + [1022] = {.lex_state = 62}, + [1023] = {.lex_state = 62}, + [1024] = {.lex_state = 62}, + [1025] = {.lex_state = 62}, + [1026] = {.lex_state = 67}, + [1027] = {.lex_state = 62}, + [1028] = {.lex_state = 62}, + [1029] = {.lex_state = 68}, + [1030] = {.lex_state = 62}, + [1031] = {.lex_state = 62}, + [1032] = {.lex_state = 4}, + [1033] = {.lex_state = 62}, + [1034] = {.lex_state = 62}, + [1035] = {.lex_state = 62}, + [1036] = {.lex_state = 62}, + [1037] = {.lex_state = 62}, + [1038] = {.lex_state = 62}, + [1039] = {.lex_state = 62}, + [1040] = {.lex_state = 62}, + [1041] = {.lex_state = 62}, + [1042] = {.lex_state = 62}, + [1043] = {.lex_state = 62}, + [1044] = {.lex_state = 62}, + [1045] = {.lex_state = 62}, + [1046] = {.lex_state = 62}, + [1047] = {.lex_state = 62}, + [1048] = {.lex_state = 62}, + [1049] = {.lex_state = 62}, + [1050] = {.lex_state = 62}, + [1051] = {.lex_state = 62}, + [1052] = {.lex_state = 62}, + [1053] = {.lex_state = 62}, + [1054] = {.lex_state = 62}, + [1055] = {.lex_state = 62}, + [1056] = {.lex_state = 62}, + [1057] = {.lex_state = 62}, + [1058] = {.lex_state = 62}, + [1059] = {.lex_state = 67}, + [1060] = {.lex_state = 62}, + [1061] = {.lex_state = 62}, + [1062] = {.lex_state = 62}, + [1063] = {.lex_state = 66}, + [1064] = {.lex_state = 68}, + [1065] = {.lex_state = 61}, + [1066] = {.lex_state = 66}, + [1067] = {.lex_state = 66}, + [1068] = {.lex_state = 66}, + [1069] = {.lex_state = 66}, + [1070] = {.lex_state = 66}, + [1071] = {.lex_state = 66}, + [1072] = {.lex_state = 66}, + [1073] = {.lex_state = 66}, + [1074] = {.lex_state = 66}, + [1075] = {.lex_state = 66}, + [1076] = {.lex_state = 66}, + [1077] = {.lex_state = 66}, + [1078] = {.lex_state = 66}, + [1079] = {.lex_state = 66}, + [1080] = {.lex_state = 66}, + [1081] = {.lex_state = 66}, + [1082] = {.lex_state = 57}, + [1083] = {.lex_state = 66}, + [1084] = {.lex_state = 66}, + [1085] = {.lex_state = 66}, + [1086] = {.lex_state = 66}, + [1087] = {.lex_state = 66}, + [1088] = {.lex_state = 66}, + [1089] = {.lex_state = 64}, + [1090] = {.lex_state = 66}, + [1091] = {.lex_state = 66}, + [1092] = {.lex_state = 57}, + [1093] = {.lex_state = 66}, + [1094] = {.lex_state = 66}, + [1095] = {.lex_state = 57}, + [1096] = {.lex_state = 66}, + [1097] = {.lex_state = 66}, + [1098] = {.lex_state = 41}, + [1099] = {.lex_state = 41}, + [1100] = {.lex_state = 46}, + [1101] = {.lex_state = 45}, + [1102] = {.lex_state = 45}, + [1103] = {.lex_state = 52}, + [1104] = {.lex_state = 48}, + [1105] = {.lex_state = 51}, + [1106] = {.lex_state = 56}, + [1107] = {.lex_state = 56}, + [1108] = {.lex_state = 56}, + [1109] = {.lex_state = 56}, + [1110] = {.lex_state = 56}, + [1111] = {.lex_state = 56}, + [1112] = {.lex_state = 56}, + [1113] = {.lex_state = 56}, + [1114] = {.lex_state = 56}, + [1115] = {.lex_state = 56}, + [1116] = {.lex_state = 56}, + [1117] = {.lex_state = 56}, + [1118] = {.lex_state = 56}, + [1119] = {.lex_state = 56}, + [1120] = {.lex_state = 56}, + [1121] = {.lex_state = 56}, + [1122] = {.lex_state = 56}, + [1123] = {.lex_state = 56}, + [1124] = {.lex_state = 56}, + [1125] = {.lex_state = 56}, + [1126] = {.lex_state = 56}, + [1127] = {.lex_state = 56}, + [1128] = {.lex_state = 56}, + [1129] = {.lex_state = 52}, + [1130] = {.lex_state = 56}, + [1131] = {.lex_state = 56}, + [1132] = {.lex_state = 56}, + [1133] = {.lex_state = 56}, + [1134] = {.lex_state = 56}, + [1135] = {.lex_state = 56}, + [1136] = {.lex_state = 56}, + [1137] = {.lex_state = 56}, + [1138] = {.lex_state = 56}, + [1139] = {.lex_state = 56}, + [1140] = {.lex_state = 56}, + [1141] = {.lex_state = 56}, + [1142] = {.lex_state = 56}, + [1143] = {.lex_state = 56}, + [1144] = {.lex_state = 53}, + [1145] = {.lex_state = 56}, + [1146] = {.lex_state = 49}, + [1147] = {.lex_state = 56}, + [1148] = {.lex_state = 56}, + [1149] = {.lex_state = 56}, + [1150] = {.lex_state = 56}, + [1151] = {.lex_state = 56}, + [1152] = {.lex_state = 56}, + [1153] = {.lex_state = 56}, + [1154] = {.lex_state = 56}, + [1155] = {.lex_state = 56}, + [1156] = {.lex_state = 56}, + [1157] = {.lex_state = 56}, + [1158] = {.lex_state = 56}, + [1159] = {.lex_state = 56}, + [1160] = {.lex_state = 56}, + [1161] = {.lex_state = 56}, + [1162] = {.lex_state = 50}, + [1163] = {.lex_state = 56}, + [1164] = {.lex_state = 52}, + [1165] = {.lex_state = 52}, + [1166] = {.lex_state = 52}, + [1167] = {.lex_state = 52}, + [1168] = {.lex_state = 52}, + [1169] = {.lex_state = 52}, + [1170] = {.lex_state = 52}, + [1171] = {.lex_state = 52}, + [1172] = {.lex_state = 52}, + [1173] = {.lex_state = 52}, + [1174] = {.lex_state = 52}, + [1175] = {.lex_state = 52}, + [1176] = {.lex_state = 52}, + [1177] = {.lex_state = 52}, + [1178] = {.lex_state = 52}, + [1179] = {.lex_state = 52}, + [1180] = {.lex_state = 52}, + [1181] = {.lex_state = 52}, + [1182] = {.lex_state = 52}, + [1183] = {.lex_state = 52}, + [1184] = {.lex_state = 52}, + [1185] = {.lex_state = 52}, + [1186] = {.lex_state = 52}, + [1187] = {.lex_state = 52}, + [1188] = {.lex_state = 52}, + [1189] = {.lex_state = 52}, + [1190] = {.lex_state = 56}, + [1191] = {.lex_state = 52}, + [1192] = {.lex_state = 52}, + [1193] = {.lex_state = 52}, + [1194] = {.lex_state = 52}, + [1195] = {.lex_state = 52}, + [1196] = {.lex_state = 52}, + [1197] = {.lex_state = 52}, + [1198] = {.lex_state = 52}, + [1199] = {.lex_state = 58}, + [1200] = {.lex_state = 52}, + [1201] = {.lex_state = 52}, + [1202] = {.lex_state = 54}, + [1203] = {.lex_state = 52}, + [1204] = {.lex_state = 52}, + [1205] = {.lex_state = 52}, + [1206] = {.lex_state = 52}, + [1207] = {.lex_state = 42}, + [1208] = {.lex_state = 52}, + [1209] = {.lex_state = 52}, + [1210] = {.lex_state = 52}, + [1211] = {.lex_state = 52}, + [1212] = {.lex_state = 52}, + [1213] = {.lex_state = 52}, + [1214] = {.lex_state = 52}, + [1215] = {.lex_state = 52}, + [1216] = {.lex_state = 52}, + [1217] = {.lex_state = 52}, + [1218] = {.lex_state = 52}, + [1219] = {.lex_state = 52}, + [1220] = {.lex_state = 47}, + [1221] = {.lex_state = 52}, + [1222] = {.lex_state = 58}, + [1223] = {.lex_state = 58}, + [1224] = {.lex_state = 58}, + [1225] = {.lex_state = 58}, + [1226] = {.lex_state = 58}, + [1227] = {.lex_state = 58}, + [1228] = {.lex_state = 51}, + [1229] = {.lex_state = 58}, + [1230] = {.lex_state = 58}, + [1231] = {.lex_state = 58}, + [1232] = {.lex_state = 58}, + [1233] = {.lex_state = 58}, + [1234] = {.lex_state = 58}, + [1235] = {.lex_state = 58}, + [1236] = {.lex_state = 58}, + [1237] = {.lex_state = 58}, + [1238] = {.lex_state = 58}, + [1239] = {.lex_state = 58}, + [1240] = {.lex_state = 58}, + [1241] = {.lex_state = 58}, + [1242] = {.lex_state = 58}, + [1243] = {.lex_state = 58}, + [1244] = {.lex_state = 58}, + [1245] = {.lex_state = 58}, + [1246] = {.lex_state = 58}, + [1247] = {.lex_state = 58}, + [1248] = {.lex_state = 58}, + [1249] = {.lex_state = 58}, + [1250] = {.lex_state = 58}, + [1251] = {.lex_state = 58}, + [1252] = {.lex_state = 58}, + [1253] = {.lex_state = 58}, + [1254] = {.lex_state = 58}, + [1255] = {.lex_state = 58}, + [1256] = {.lex_state = 58}, + [1257] = {.lex_state = 58}, + [1258] = {.lex_state = 58}, + [1259] = {.lex_state = 59}, + [1260] = {.lex_state = 58}, + [1261] = {.lex_state = 58}, + [1262] = {.lex_state = 58}, + [1263] = {.lex_state = 58}, + [1264] = {.lex_state = 58}, + [1265] = {.lex_state = 58}, + [1266] = {.lex_state = 58}, + [1267] = {.lex_state = 58}, + [1268] = {.lex_state = 58}, + [1269] = {.lex_state = 58}, + [1270] = {.lex_state = 58}, + [1271] = {.lex_state = 58}, + [1272] = {.lex_state = 55}, + [1273] = {.lex_state = 58}, + [1274] = {.lex_state = 58}, + [1275] = {.lex_state = 58}, + [1276] = {.lex_state = 58}, + [1277] = {.lex_state = 46}, + [1278] = {.lex_state = 58}, + [1279] = {.lex_state = 51}, + [1280] = {.lex_state = 51}, + [1281] = {.lex_state = 51}, + [1282] = {.lex_state = 51}, + [1283] = {.lex_state = 51}, + [1284] = {.lex_state = 51}, + [1285] = {.lex_state = 51}, + [1286] = {.lex_state = 51}, + [1287] = {.lex_state = 51}, + [1288] = {.lex_state = 51}, + [1289] = {.lex_state = 51}, + [1290] = {.lex_state = 51}, + [1291] = {.lex_state = 51}, + [1292] = {.lex_state = 51}, + [1293] = {.lex_state = 51}, + [1294] = {.lex_state = 51}, + [1295] = {.lex_state = 51}, + [1296] = {.lex_state = 51}, + [1297] = {.lex_state = 51}, + [1298] = {.lex_state = 51}, + [1299] = {.lex_state = 51}, + [1300] = {.lex_state = 51}, + [1301] = {.lex_state = 51}, + [1302] = {.lex_state = 51}, + [1303] = {.lex_state = 55}, + [1304] = {.lex_state = 51}, + [1305] = {.lex_state = 51}, + [1306] = {.lex_state = 51}, + [1307] = {.lex_state = 51}, + [1308] = {.lex_state = 51}, + [1309] = {.lex_state = 51}, + [1310] = {.lex_state = 51}, + [1311] = {.lex_state = 51}, + [1312] = {.lex_state = 51}, + [1313] = {.lex_state = 51}, + [1314] = {.lex_state = 51}, + [1315] = {.lex_state = 50}, + [1316] = {.lex_state = 51}, + [1317] = {.lex_state = 55}, + [1318] = {.lex_state = 51}, + [1319] = {.lex_state = 51}, + [1320] = {.lex_state = 51}, + [1321] = {.lex_state = 51}, + [1322] = {.lex_state = 51}, + [1323] = {.lex_state = 51}, + [1324] = {.lex_state = 51}, + [1325] = {.lex_state = 51}, + [1326] = {.lex_state = 51}, + [1327] = {.lex_state = 51}, + [1328] = {.lex_state = 51}, + [1329] = {.lex_state = 51}, + [1330] = {.lex_state = 51}, + [1331] = {.lex_state = 59}, + [1332] = {.lex_state = 51}, + [1333] = {.lex_state = 51}, + [1334] = {.lex_state = 51}, + [1335] = {.lex_state = 51}, + [1336] = {.lex_state = 50}, + [1337] = {.lex_state = 50}, + [1338] = {.lex_state = 50}, + [1339] = {.lex_state = 50}, + [1340] = {.lex_state = 50}, + [1341] = {.lex_state = 50}, + [1342] = {.lex_state = 50}, + [1343] = {.lex_state = 50}, + [1344] = {.lex_state = 50}, + [1345] = {.lex_state = 50}, + [1346] = {.lex_state = 50}, + [1347] = {.lex_state = 50}, + [1348] = {.lex_state = 50}, + [1349] = {.lex_state = 50}, + [1350] = {.lex_state = 50}, + [1351] = {.lex_state = 50}, + [1352] = {.lex_state = 50}, + [1353] = {.lex_state = 50}, + [1354] = {.lex_state = 50}, + [1355] = {.lex_state = 50}, + [1356] = {.lex_state = 47}, + [1357] = {.lex_state = 50}, + [1358] = {.lex_state = 50}, + [1359] = {.lex_state = 50}, + [1360] = {.lex_state = 50}, + [1361] = {.lex_state = 50}, + [1362] = {.lex_state = 59}, + [1363] = {.lex_state = 50}, + [1364] = {.lex_state = 50}, + [1365] = {.lex_state = 50}, + [1366] = {.lex_state = 50}, + [1367] = {.lex_state = 50}, + [1368] = {.lex_state = 50}, + [1369] = {.lex_state = 50}, + [1370] = {.lex_state = 50}, + [1371] = {.lex_state = 50}, + [1372] = {.lex_state = 50}, + [1373] = {.lex_state = 50}, + [1374] = {.lex_state = 56}, + [1375] = {.lex_state = 50}, + [1376] = {.lex_state = 50}, + [1377] = {.lex_state = 50}, + [1378] = {.lex_state = 50}, + [1379] = {.lex_state = 50}, + [1380] = {.lex_state = 50}, + [1381] = {.lex_state = 50}, + [1382] = {.lex_state = 50}, + [1383] = {.lex_state = 50}, + [1384] = {.lex_state = 50}, + [1385] = {.lex_state = 50}, + [1386] = {.lex_state = 50}, + [1387] = {.lex_state = 50}, + [1388] = {.lex_state = 50}, + [1389] = {.lex_state = 50}, + [1390] = {.lex_state = 54}, + [1391] = {.lex_state = 50}, + [1392] = {.lex_state = 50}, + [1393] = {.lex_state = 47}, + [1394] = {.lex_state = 47}, + [1395] = {.lex_state = 47}, + [1396] = {.lex_state = 56}, + [1397] = {.lex_state = 47}, + [1398] = {.lex_state = 47}, + [1399] = {.lex_state = 47}, + [1400] = {.lex_state = 47}, + [1401] = {.lex_state = 47}, + [1402] = {.lex_state = 47}, + [1403] = {.lex_state = 47}, + [1404] = {.lex_state = 47}, + [1405] = {.lex_state = 47}, + [1406] = {.lex_state = 47}, + [1407] = {.lex_state = 47}, + [1408] = {.lex_state = 47}, + [1409] = {.lex_state = 47}, + [1410] = {.lex_state = 47}, + [1411] = {.lex_state = 47}, + [1412] = {.lex_state = 47}, + [1413] = {.lex_state = 47}, + [1414] = {.lex_state = 47}, + [1415] = {.lex_state = 47}, + [1416] = {.lex_state = 47}, + [1417] = {.lex_state = 47}, + [1418] = {.lex_state = 47}, + [1419] = {.lex_state = 47}, + [1420] = {.lex_state = 47}, + [1421] = {.lex_state = 54}, + [1422] = {.lex_state = 47}, + [1423] = {.lex_state = 47}, + [1424] = {.lex_state = 47}, + [1425] = {.lex_state = 55}, + [1426] = {.lex_state = 56}, + [1427] = {.lex_state = 47}, + [1428] = {.lex_state = 47}, + [1429] = {.lex_state = 55}, + [1430] = {.lex_state = 55}, + [1431] = {.lex_state = 55}, + [1432] = {.lex_state = 55}, + [1433] = {.lex_state = 55}, + [1434] = {.lex_state = 55}, + [1435] = {.lex_state = 55}, + [1436] = {.lex_state = 55}, + [1437] = {.lex_state = 55}, + [1438] = {.lex_state = 55}, + [1439] = {.lex_state = 55}, + [1440] = {.lex_state = 55}, + [1441] = {.lex_state = 55}, + [1442] = {.lex_state = 55}, + [1443] = {.lex_state = 55}, + [1444] = {.lex_state = 55}, + [1445] = {.lex_state = 55}, + [1446] = {.lex_state = 55}, + [1447] = {.lex_state = 55}, + [1448] = {.lex_state = 55}, + [1449] = {.lex_state = 53}, + [1450] = {.lex_state = 55}, + [1451] = {.lex_state = 55}, + [1452] = {.lex_state = 55}, + [1453] = {.lex_state = 55}, + [1454] = {.lex_state = 55}, + [1455] = {.lex_state = 55}, + [1456] = {.lex_state = 55}, + [1457] = {.lex_state = 55}, + [1458] = {.lex_state = 55}, + [1459] = {.lex_state = 55}, + [1460] = {.lex_state = 55}, + [1461] = {.lex_state = 55}, + [1462] = {.lex_state = 55}, + [1463] = {.lex_state = 55}, + [1464] = {.lex_state = 55}, + [1465] = {.lex_state = 55}, + [1466] = {.lex_state = 55}, + [1467] = {.lex_state = 55}, + [1468] = {.lex_state = 55}, + [1469] = {.lex_state = 55}, + [1470] = {.lex_state = 55}, + [1471] = {.lex_state = 55}, + [1472] = {.lex_state = 55}, + [1473] = {.lex_state = 55}, + [1474] = {.lex_state = 55}, + [1475] = {.lex_state = 55}, + [1476] = {.lex_state = 55}, + [1477] = {.lex_state = 55}, + [1478] = {.lex_state = 55}, + [1479] = {.lex_state = 55}, + [1480] = {.lex_state = 53}, + [1481] = {.lex_state = 55}, + [1482] = {.lex_state = 55}, + [1483] = {.lex_state = 55}, + [1484] = {.lex_state = 59}, + [1485] = {.lex_state = 47}, + [1486] = {.lex_state = 47}, + [1487] = {.lex_state = 47}, + [1488] = {.lex_state = 59}, + [1489] = {.lex_state = 59}, + [1490] = {.lex_state = 59}, + [1491] = {.lex_state = 59}, + [1492] = {.lex_state = 59}, + [1493] = {.lex_state = 59}, + [1494] = {.lex_state = 59}, + [1495] = {.lex_state = 59}, + [1496] = {.lex_state = 59}, + [1497] = {.lex_state = 59}, + [1498] = {.lex_state = 59}, + [1499] = {.lex_state = 59}, + [1500] = {.lex_state = 59}, + [1501] = {.lex_state = 59}, + [1502] = {.lex_state = 59}, + [1503] = {.lex_state = 59}, + [1504] = {.lex_state = 59}, + [1505] = {.lex_state = 59}, + [1506] = {.lex_state = 59}, + [1507] = {.lex_state = 59}, + [1508] = {.lex_state = 48}, + [1509] = {.lex_state = 59}, + [1510] = {.lex_state = 59}, + [1511] = {.lex_state = 59}, + [1512] = {.lex_state = 59}, + [1513] = {.lex_state = 59}, + [1514] = {.lex_state = 59}, + [1515] = {.lex_state = 59}, + [1516] = {.lex_state = 59}, + [1517] = {.lex_state = 59}, + [1518] = {.lex_state = 59}, + [1519] = {.lex_state = 59}, + [1520] = {.lex_state = 59}, + [1521] = {.lex_state = 59}, + [1522] = {.lex_state = 59}, + [1523] = {.lex_state = 59}, + [1524] = {.lex_state = 59}, + [1525] = {.lex_state = 59}, + [1526] = {.lex_state = 59}, + [1527] = {.lex_state = 59}, + [1528] = {.lex_state = 59}, + [1529] = {.lex_state = 59}, + [1530] = {.lex_state = 59}, + [1531] = {.lex_state = 59}, + [1532] = {.lex_state = 59}, + [1533] = {.lex_state = 59}, + [1534] = {.lex_state = 59}, + [1535] = {.lex_state = 59}, + [1536] = {.lex_state = 59}, + [1537] = {.lex_state = 59}, + [1538] = {.lex_state = 59}, + [1539] = {.lex_state = 48}, + [1540] = {.lex_state = 59}, + [1541] = {.lex_state = 59}, + [1542] = {.lex_state = 59}, + [1543] = {.lex_state = 54}, + [1544] = {.lex_state = 47}, + [1545] = {.lex_state = 47}, + [1546] = {.lex_state = 52}, + [1547] = {.lex_state = 54}, + [1548] = {.lex_state = 54}, + [1549] = {.lex_state = 54}, + [1550] = {.lex_state = 54}, + [1551] = {.lex_state = 54}, + [1552] = {.lex_state = 54}, + [1553] = {.lex_state = 54}, + [1554] = {.lex_state = 54}, + [1555] = {.lex_state = 54}, + [1556] = {.lex_state = 54}, + [1557] = {.lex_state = 54}, + [1558] = {.lex_state = 54}, + [1559] = {.lex_state = 54}, + [1560] = {.lex_state = 54}, + [1561] = {.lex_state = 54}, + [1562] = {.lex_state = 54}, + [1563] = {.lex_state = 54}, + [1564] = {.lex_state = 54}, + [1565] = {.lex_state = 54}, + [1566] = {.lex_state = 54}, + [1567] = {.lex_state = 45}, + [1568] = {.lex_state = 54}, + [1569] = {.lex_state = 54}, + [1570] = {.lex_state = 54}, + [1571] = {.lex_state = 54}, + [1572] = {.lex_state = 54}, + [1573] = {.lex_state = 54}, + [1574] = {.lex_state = 54}, + [1575] = {.lex_state = 54}, + [1576] = {.lex_state = 54}, + [1577] = {.lex_state = 54}, + [1578] = {.lex_state = 54}, + [1579] = {.lex_state = 54}, + [1580] = {.lex_state = 54}, + [1581] = {.lex_state = 54}, + [1582] = {.lex_state = 54}, + [1583] = {.lex_state = 54}, + [1584] = {.lex_state = 54}, + [1585] = {.lex_state = 54}, + [1586] = {.lex_state = 54}, + [1587] = {.lex_state = 54}, + [1588] = {.lex_state = 54}, + [1589] = {.lex_state = 54}, + [1590] = {.lex_state = 54}, + [1591] = {.lex_state = 54}, + [1592] = {.lex_state = 54}, + [1593] = {.lex_state = 54}, + [1594] = {.lex_state = 54}, + [1595] = {.lex_state = 54}, + [1596] = {.lex_state = 54}, + [1597] = {.lex_state = 54}, + [1598] = {.lex_state = 45}, + [1599] = {.lex_state = 54}, + [1600] = {.lex_state = 54}, + [1601] = {.lex_state = 54}, + [1602] = {.lex_state = 53}, + [1603] = {.lex_state = 47}, + [1604] = {.lex_state = 47}, + [1605] = {.lex_state = 47}, + [1606] = {.lex_state = 53}, + [1607] = {.lex_state = 53}, + [1608] = {.lex_state = 53}, + [1609] = {.lex_state = 53}, + [1610] = {.lex_state = 53}, + [1611] = {.lex_state = 53}, + [1612] = {.lex_state = 53}, + [1613] = {.lex_state = 53}, + [1614] = {.lex_state = 53}, + [1615] = {.lex_state = 53}, + [1616] = {.lex_state = 53}, + [1617] = {.lex_state = 53}, + [1618] = {.lex_state = 53}, + [1619] = {.lex_state = 53}, + [1620] = {.lex_state = 53}, + [1621] = {.lex_state = 53}, + [1622] = {.lex_state = 53}, + [1623] = {.lex_state = 53}, + [1624] = {.lex_state = 53}, + [1625] = {.lex_state = 53}, + [1626] = {.lex_state = 49}, + [1627] = {.lex_state = 53}, + [1628] = {.lex_state = 53}, + [1629] = {.lex_state = 53}, + [1630] = {.lex_state = 53}, + [1631] = {.lex_state = 53}, + [1632] = {.lex_state = 53}, + [1633] = {.lex_state = 53}, + [1634] = {.lex_state = 53}, + [1635] = {.lex_state = 53}, + [1636] = {.lex_state = 53}, + [1637] = {.lex_state = 53}, + [1638] = {.lex_state = 53}, + [1639] = {.lex_state = 53}, + [1640] = {.lex_state = 53}, + [1641] = {.lex_state = 53}, + [1642] = {.lex_state = 53}, + [1643] = {.lex_state = 53}, + [1644] = {.lex_state = 53}, + [1645] = {.lex_state = 53}, + [1646] = {.lex_state = 53}, + [1647] = {.lex_state = 53}, + [1648] = {.lex_state = 53}, + [1649] = {.lex_state = 53}, + [1650] = {.lex_state = 53}, + [1651] = {.lex_state = 53}, + [1652] = {.lex_state = 53}, + [1653] = {.lex_state = 53}, + [1654] = {.lex_state = 53}, + [1655] = {.lex_state = 53}, + [1656] = {.lex_state = 53}, + [1657] = {.lex_state = 49}, + [1658] = {.lex_state = 53}, + [1659] = {.lex_state = 53}, + [1660] = {.lex_state = 53}, + [1661] = {.lex_state = 48}, + [1662] = {.lex_state = 47}, + [1663] = {.lex_state = 47}, + [1664] = {.lex_state = 55}, + [1665] = {.lex_state = 48}, + [1666] = {.lex_state = 48}, + [1667] = {.lex_state = 48}, + [1668] = {.lex_state = 48}, + [1669] = {.lex_state = 48}, + [1670] = {.lex_state = 48}, + [1671] = {.lex_state = 48}, + [1672] = {.lex_state = 48}, + [1673] = {.lex_state = 48}, + [1674] = {.lex_state = 48}, + [1675] = {.lex_state = 48}, + [1676] = {.lex_state = 48}, + [1677] = {.lex_state = 48}, + [1678] = {.lex_state = 48}, + [1679] = {.lex_state = 48}, + [1680] = {.lex_state = 48}, + [1681] = {.lex_state = 48}, + [1682] = {.lex_state = 48}, + [1683] = {.lex_state = 48}, + [1684] = {.lex_state = 48}, + [1685] = {.lex_state = 44}, + [1686] = {.lex_state = 48}, + [1687] = {.lex_state = 48}, + [1688] = {.lex_state = 48}, + [1689] = {.lex_state = 48}, + [1690] = {.lex_state = 48}, + [1691] = {.lex_state = 48}, + [1692] = {.lex_state = 48}, + [1693] = {.lex_state = 48}, + [1694] = {.lex_state = 48}, + [1695] = {.lex_state = 48}, + [1696] = {.lex_state = 48}, + [1697] = {.lex_state = 48}, + [1698] = {.lex_state = 48}, + [1699] = {.lex_state = 48}, + [1700] = {.lex_state = 48}, + [1701] = {.lex_state = 48}, + [1702] = {.lex_state = 48}, + [1703] = {.lex_state = 48}, + [1704] = {.lex_state = 48}, + [1705] = {.lex_state = 48}, + [1706] = {.lex_state = 48}, + [1707] = {.lex_state = 48}, + [1708] = {.lex_state = 48}, + [1709] = {.lex_state = 48}, + [1710] = {.lex_state = 48}, + [1711] = {.lex_state = 48}, + [1712] = {.lex_state = 48}, + [1713] = {.lex_state = 48}, + [1714] = {.lex_state = 48}, + [1715] = {.lex_state = 48}, + [1716] = {.lex_state = 44}, + [1717] = {.lex_state = 48}, + [1718] = {.lex_state = 48}, + [1719] = {.lex_state = 48}, + [1720] = {.lex_state = 45}, + [1721] = {.lex_state = 47}, + [1722] = {.lex_state = 47}, + [1723] = {.lex_state = 59}, + [1724] = {.lex_state = 45}, + [1725] = {.lex_state = 45}, + [1726] = {.lex_state = 45}, + [1727] = {.lex_state = 45}, + [1728] = {.lex_state = 45}, + [1729] = {.lex_state = 45}, + [1730] = {.lex_state = 45}, + [1731] = {.lex_state = 45}, + [1732] = {.lex_state = 45}, + [1733] = {.lex_state = 45}, + [1734] = {.lex_state = 45}, + [1735] = {.lex_state = 45}, + [1736] = {.lex_state = 45}, + [1737] = {.lex_state = 45}, + [1738] = {.lex_state = 45}, + [1739] = {.lex_state = 45}, + [1740] = {.lex_state = 45}, + [1741] = {.lex_state = 58}, + [1742] = {.lex_state = 45}, + [1743] = {.lex_state = 45}, + [1744] = {.lex_state = 40}, + [1745] = {.lex_state = 45}, + [1746] = {.lex_state = 45}, + [1747] = {.lex_state = 45}, + [1748] = {.lex_state = 45}, + [1749] = {.lex_state = 45}, + [1750] = {.lex_state = 45}, + [1751] = {.lex_state = 45}, + [1752] = {.lex_state = 45}, + [1753] = {.lex_state = 45}, + [1754] = {.lex_state = 45}, + [1755] = {.lex_state = 45}, + [1756] = {.lex_state = 45}, + [1757] = {.lex_state = 45}, + [1758] = {.lex_state = 45}, + [1759] = {.lex_state = 45}, + [1760] = {.lex_state = 45}, + [1761] = {.lex_state = 45}, + [1762] = {.lex_state = 45}, + [1763] = {.lex_state = 45}, + [1764] = {.lex_state = 45}, + [1765] = {.lex_state = 45}, + [1766] = {.lex_state = 45}, + [1767] = {.lex_state = 45}, + [1768] = {.lex_state = 45}, + [1769] = {.lex_state = 45}, + [1770] = {.lex_state = 45}, + [1771] = {.lex_state = 45}, + [1772] = {.lex_state = 45}, + [1773] = {.lex_state = 45}, + [1774] = {.lex_state = 45}, + [1775] = {.lex_state = 40}, + [1776] = {.lex_state = 45}, + [1777] = {.lex_state = 45}, + [1778] = {.lex_state = 45}, + [1779] = {.lex_state = 49}, + [1780] = {.lex_state = 47}, + [1781] = {.lex_state = 47}, + [1782] = {.lex_state = 54}, + [1783] = {.lex_state = 49}, + [1784] = {.lex_state = 49}, + [1785] = {.lex_state = 49}, + [1786] = {.lex_state = 49}, + [1787] = {.lex_state = 49}, + [1788] = {.lex_state = 49}, + [1789] = {.lex_state = 49}, + [1790] = {.lex_state = 49}, + [1791] = {.lex_state = 49}, + [1792] = {.lex_state = 49}, + [1793] = {.lex_state = 49}, + [1794] = {.lex_state = 49}, + [1795] = {.lex_state = 49}, + [1796] = {.lex_state = 49}, + [1797] = {.lex_state = 49}, + [1798] = {.lex_state = 49}, + [1799] = {.lex_state = 49}, + [1800] = {.lex_state = 49}, + [1801] = {.lex_state = 49}, + [1802] = {.lex_state = 49}, + [1803] = {.lex_state = 47}, + [1804] = {.lex_state = 49}, + [1805] = {.lex_state = 49}, + [1806] = {.lex_state = 49}, + [1807] = {.lex_state = 49}, + [1808] = {.lex_state = 49}, + [1809] = {.lex_state = 49}, + [1810] = {.lex_state = 49}, + [1811] = {.lex_state = 49}, + [1812] = {.lex_state = 49}, + [1813] = {.lex_state = 49}, + [1814] = {.lex_state = 49}, + [1815] = {.lex_state = 49}, + [1816] = {.lex_state = 49}, + [1817] = {.lex_state = 49}, + [1818] = {.lex_state = 49}, + [1819] = {.lex_state = 49}, + [1820] = {.lex_state = 49}, + [1821] = {.lex_state = 49}, + [1822] = {.lex_state = 49}, + [1823] = {.lex_state = 49}, + [1824] = {.lex_state = 49}, + [1825] = {.lex_state = 49}, + [1826] = {.lex_state = 49}, + [1827] = {.lex_state = 49}, + [1828] = {.lex_state = 49}, + [1829] = {.lex_state = 49}, + [1830] = {.lex_state = 49}, + [1831] = {.lex_state = 49}, + [1832] = {.lex_state = 49}, + [1833] = {.lex_state = 49}, + [1834] = {.lex_state = 47}, + [1835] = {.lex_state = 49}, + [1836] = {.lex_state = 49}, + [1837] = {.lex_state = 49}, + [1838] = {.lex_state = 43}, + [1839] = {.lex_state = 47}, + [1840] = {.lex_state = 47}, + [1841] = {.lex_state = 53}, + [1842] = {.lex_state = 43}, + [1843] = {.lex_state = 43}, + [1844] = {.lex_state = 43}, + [1845] = {.lex_state = 43}, + [1846] = {.lex_state = 43}, + [1847] = {.lex_state = 43}, + [1848] = {.lex_state = 43}, + [1849] = {.lex_state = 43}, + [1850] = {.lex_state = 43}, + [1851] = {.lex_state = 43}, + [1852] = {.lex_state = 43}, + [1853] = {.lex_state = 43}, + [1854] = {.lex_state = 43}, + [1855] = {.lex_state = 43}, + [1856] = {.lex_state = 43}, + [1857] = {.lex_state = 43}, + [1858] = {.lex_state = 43}, + [1859] = {.lex_state = 43}, + [1860] = {.lex_state = 43}, + [1861] = {.lex_state = 43}, + [1862] = {.lex_state = 47}, + [1863] = {.lex_state = 43}, + [1864] = {.lex_state = 43}, + [1865] = {.lex_state = 43}, + [1866] = {.lex_state = 43}, + [1867] = {.lex_state = 43}, + [1868] = {.lex_state = 43}, + [1869] = {.lex_state = 43}, + [1870] = {.lex_state = 43}, + [1871] = {.lex_state = 43}, + [1872] = {.lex_state = 43}, + [1873] = {.lex_state = 43}, + [1874] = {.lex_state = 43}, + [1875] = {.lex_state = 43}, + [1876] = {.lex_state = 43}, + [1877] = {.lex_state = 43}, + [1878] = {.lex_state = 43}, + [1879] = {.lex_state = 43}, + [1880] = {.lex_state = 43}, + [1881] = {.lex_state = 43}, + [1882] = {.lex_state = 43}, + [1883] = {.lex_state = 43}, + [1884] = {.lex_state = 43}, + [1885] = {.lex_state = 43}, + [1886] = {.lex_state = 43}, + [1887] = {.lex_state = 43}, + [1888] = {.lex_state = 43}, + [1889] = {.lex_state = 43}, + [1890] = {.lex_state = 43}, + [1891] = {.lex_state = 43}, + [1892] = {.lex_state = 43}, + [1893] = {.lex_state = 46}, + [1894] = {.lex_state = 43}, + [1895] = {.lex_state = 43}, + [1896] = {.lex_state = 43}, + [1897] = {.lex_state = 42}, + [1898] = {.lex_state = 47}, + [1899] = {.lex_state = 47}, + [1900] = {.lex_state = 48}, + [1901] = {.lex_state = 42}, + [1902] = {.lex_state = 42}, + [1903] = {.lex_state = 42}, + [1904] = {.lex_state = 42}, + [1905] = {.lex_state = 42}, + [1906] = {.lex_state = 42}, + [1907] = {.lex_state = 42}, + [1908] = {.lex_state = 42}, + [1909] = {.lex_state = 42}, + [1910] = {.lex_state = 42}, + [1911] = {.lex_state = 42}, + [1912] = {.lex_state = 42}, + [1913] = {.lex_state = 42}, + [1914] = {.lex_state = 42}, + [1915] = {.lex_state = 42}, + [1916] = {.lex_state = 42}, + [1917] = {.lex_state = 42}, + [1918] = {.lex_state = 42}, + [1919] = {.lex_state = 42}, + [1920] = {.lex_state = 42}, + [1921] = {.lex_state = 46}, + [1922] = {.lex_state = 42}, + [1923] = {.lex_state = 42}, + [1924] = {.lex_state = 42}, + [1925] = {.lex_state = 42}, + [1926] = {.lex_state = 42}, + [1927] = {.lex_state = 42}, + [1928] = {.lex_state = 42}, + [1929] = {.lex_state = 42}, + [1930] = {.lex_state = 42}, + [1931] = {.lex_state = 42}, + [1932] = {.lex_state = 42}, + [1933] = {.lex_state = 42}, + [1934] = {.lex_state = 42}, + [1935] = {.lex_state = 42}, + [1936] = {.lex_state = 42}, + [1937] = {.lex_state = 42}, + [1938] = {.lex_state = 42}, + [1939] = {.lex_state = 42}, + [1940] = {.lex_state = 42}, + [1941] = {.lex_state = 42}, + [1942] = {.lex_state = 42}, + [1943] = {.lex_state = 42}, + [1944] = {.lex_state = 42}, + [1945] = {.lex_state = 42}, + [1946] = {.lex_state = 42}, + [1947] = {.lex_state = 42}, + [1948] = {.lex_state = 42}, + [1949] = {.lex_state = 42}, + [1950] = {.lex_state = 42}, + [1951] = {.lex_state = 42}, + [1952] = {.lex_state = 46}, + [1953] = {.lex_state = 42}, + [1954] = {.lex_state = 42}, + [1955] = {.lex_state = 42}, + [1956] = {.lex_state = 45}, + [1957] = {.lex_state = 42}, + [1958] = {.lex_state = 42}, + [1959] = {.lex_state = 49}, + [1960] = {.lex_state = 43}, + [1961] = {.lex_state = 43}, + [1962] = {.lex_state = 43}, + [1963] = {.lex_state = 42}, + [1964] = {.lex_state = 94}, + [1965] = {.lex_state = 94}, + [1966] = {.lex_state = 94}, + [1967] = {.lex_state = 46}, + [1968] = {.lex_state = 52}, + [1969] = {.lex_state = 46}, + [1970] = {.lex_state = 46}, + [1971] = {.lex_state = 94}, + [1972] = {.lex_state = 94}, + [1973] = {.lex_state = 46}, + [1974] = {.lex_state = 94}, + [1975] = {.lex_state = 46}, + [1976] = {.lex_state = 46}, + [1977] = {.lex_state = 46}, + [1978] = {.lex_state = 46}, + [1979] = {.lex_state = 94}, + [1980] = {.lex_state = 94}, + [1981] = {.lex_state = 94}, + [1982] = {.lex_state = 46}, + [1983] = {.lex_state = 46}, + [1984] = {.lex_state = 94}, + [1985] = {.lex_state = 94}, + [1986] = {.lex_state = 94}, + [1987] = {.lex_state = 94}, + [1988] = {.lex_state = 46}, + [1989] = {.lex_state = 46}, + [1990] = {.lex_state = 46}, + [1991] = {.lex_state = 46}, + [1992] = {.lex_state = 46}, + [1993] = {.lex_state = 46}, + [1994] = {.lex_state = 46}, + [1995] = {.lex_state = 94}, + [1996] = {.lex_state = 94}, + [1997] = {.lex_state = 94}, + [1998] = {.lex_state = 58}, + [1999] = {.lex_state = 46}, + [2000] = {.lex_state = 94}, + [2001] = {.lex_state = 94}, + [2002] = {.lex_state = 94}, + [2003] = {.lex_state = 46}, + [2004] = {.lex_state = 46}, + [2005] = {.lex_state = 46}, + [2006] = {.lex_state = 46}, + [2007] = {.lex_state = 46}, + [2008] = {.lex_state = 46}, + [2009] = {.lex_state = 46}, + [2010] = {.lex_state = 46}, + [2011] = {.lex_state = 46}, + [2012] = {.lex_state = 44}, + [2013] = {.lex_state = 94}, + [2014] = {.lex_state = 94}, + [2015] = {.lex_state = 46}, + [2016] = {.lex_state = 46}, + [2017] = {.lex_state = 52}, + [2018] = {.lex_state = 46}, + [2019] = {.lex_state = 94}, + [2020] = {.lex_state = 94}, + [2021] = {.lex_state = 94}, + [2022] = {.lex_state = 94}, + [2023] = {.lex_state = 94}, + [2024] = {.lex_state = 94}, + [2025] = {.lex_state = 46}, + [2026] = {.lex_state = 46}, + [2027] = {.lex_state = 46}, + [2028] = {.lex_state = 58}, + [2029] = {.lex_state = 94}, + [2030] = {.lex_state = 94}, + [2031] = {.lex_state = 94}, + [2032] = {.lex_state = 46}, + [2033] = {.lex_state = 46}, + [2034] = {.lex_state = 46}, + [2035] = {.lex_state = 46}, + [2036] = {.lex_state = 46}, + [2037] = {.lex_state = 46}, + [2038] = {.lex_state = 46}, + [2039] = {.lex_state = 46}, + [2040] = {.lex_state = 94}, + [2041] = {.lex_state = 94}, + [2042] = {.lex_state = 94}, + [2043] = {.lex_state = 46}, + [2044] = {.lex_state = 46}, + [2045] = {.lex_state = 94}, + [2046] = {.lex_state = 94}, + [2047] = {.lex_state = 94}, + [2048] = {.lex_state = 46}, + [2049] = {.lex_state = 46}, + [2050] = {.lex_state = 46}, + [2051] = {.lex_state = 46}, + [2052] = {.lex_state = 46}, + [2053] = {.lex_state = 46}, + [2054] = {.lex_state = 40}, + [2055] = {.lex_state = 46}, + [2056] = {.lex_state = 50}, + [2057] = {.lex_state = 58}, + [2058] = {.lex_state = 94}, + [2059] = {.lex_state = 94}, + [2060] = {.lex_state = 94}, + [2061] = {.lex_state = 51}, + [2062] = {.lex_state = 94}, + [2063] = {.lex_state = 44}, + [2064] = {.lex_state = 51}, + [2065] = {.lex_state = 94}, + [2066] = {.lex_state = 94}, + [2067] = {.lex_state = 94}, + [2068] = {.lex_state = 94}, + [2069] = {.lex_state = 94}, + [2070] = {.lex_state = 51}, + [2071] = {.lex_state = 50}, + [2072] = {.lex_state = 40}, + [2073] = {.lex_state = 50}, + [2074] = {.lex_state = 94}, + [2075] = {.lex_state = 94}, + [2076] = {.lex_state = 94}, + [2077] = {.lex_state = 47}, + [2078] = {.lex_state = 40}, + [2079] = {.lex_state = 40}, + [2080] = {.lex_state = 40}, + [2081] = {.lex_state = 47}, + [2082] = {.lex_state = 40}, + [2083] = {.lex_state = 40}, + [2084] = {.lex_state = 40}, + [2085] = {.lex_state = 94}, + [2086] = {.lex_state = 40}, + [2087] = {.lex_state = 94}, + [2088] = {.lex_state = 94}, + [2089] = {.lex_state = 40}, + [2090] = {.lex_state = 40}, + [2091] = {.lex_state = 94}, + [2092] = {.lex_state = 94}, + [2093] = {.lex_state = 94}, + [2094] = {.lex_state = 40}, + [2095] = {.lex_state = 40}, + [2096] = {.lex_state = 40}, + [2097] = {.lex_state = 40}, + [2098] = {.lex_state = 40}, + [2099] = {.lex_state = 40}, + [2100] = {.lex_state = 40}, + [2101] = {.lex_state = 40}, + [2102] = {.lex_state = 40}, + [2103] = {.lex_state = 40}, + [2104] = {.lex_state = 94}, + [2105] = {.lex_state = 94}, + [2106] = {.lex_state = 94}, + [2107] = {.lex_state = 40}, + [2108] = {.lex_state = 44}, + [2109] = {.lex_state = 40}, + [2110] = {.lex_state = 40}, + [2111] = {.lex_state = 43}, + [2112] = {.lex_state = 44}, + [2113] = {.lex_state = 44}, + [2114] = {.lex_state = 44}, + [2115] = {.lex_state = 44}, + [2116] = {.lex_state = 40}, + [2117] = {.lex_state = 40}, + [2118] = {.lex_state = 40}, + [2119] = {.lex_state = 40}, + [2120] = {.lex_state = 44}, + [2121] = {.lex_state = 44}, + [2122] = {.lex_state = 44}, + [2123] = {.lex_state = 40}, + [2124] = {.lex_state = 40}, + [2125] = {.lex_state = 40}, + [2126] = {.lex_state = 40}, + [2127] = {.lex_state = 40}, + [2128] = {.lex_state = 40}, + [2129] = {.lex_state = 40}, + [2130] = {.lex_state = 47}, + [2131] = {.lex_state = 44}, + [2132] = {.lex_state = 94}, + [2133] = {.lex_state = 44}, + [2134] = {.lex_state = 40}, + [2135] = {.lex_state = 44}, + [2136] = {.lex_state = 44}, + [2137] = {.lex_state = 44}, + [2138] = {.lex_state = 44}, + [2139] = {.lex_state = 40}, + [2140] = {.lex_state = 40}, + [2141] = {.lex_state = 40}, + [2142] = {.lex_state = 46}, + [2143] = {.lex_state = 40}, + [2144] = {.lex_state = 40}, + [2145] = {.lex_state = 40}, + [2146] = {.lex_state = 40}, + [2147] = {.lex_state = 40}, + [2148] = {.lex_state = 40}, + [2149] = {.lex_state = 40}, + [2150] = {.lex_state = 44}, + [2151] = {.lex_state = 44}, + [2152] = {.lex_state = 40}, + [2153] = {.lex_state = 44}, + [2154] = {.lex_state = 44}, + [2155] = {.lex_state = 40}, + [2156] = {.lex_state = 40}, + [2157] = {.lex_state = 44}, + [2158] = {.lex_state = 44}, + [2159] = {.lex_state = 46}, + [2160] = {.lex_state = 44}, + [2161] = {.lex_state = 40}, + [2162] = {.lex_state = 40}, + [2163] = {.lex_state = 40}, + [2164] = {.lex_state = 40}, + [2165] = {.lex_state = 44}, + [2166] = {.lex_state = 44}, + [2167] = {.lex_state = 44}, + [2168] = {.lex_state = 40}, + [2169] = {.lex_state = 40}, + [2170] = {.lex_state = 44}, + [2171] = {.lex_state = 40}, + [2172] = {.lex_state = 44}, + [2173] = {.lex_state = 44}, + [2174] = {.lex_state = 44}, + [2175] = {.lex_state = 44}, + [2176] = {.lex_state = 46}, + [2177] = {.lex_state = 44}, + [2178] = {.lex_state = 44}, + [2179] = {.lex_state = 44}, + [2180] = {.lex_state = 44}, + [2181] = {.lex_state = 44}, + [2182] = {.lex_state = 44}, + [2183] = {.lex_state = 44}, + [2184] = {.lex_state = 44}, + [2185] = {.lex_state = 44}, + [2186] = {.lex_state = 44}, + [2187] = {.lex_state = 44}, + [2188] = {.lex_state = 44}, + [2189] = {.lex_state = 44}, + [2190] = {.lex_state = 44}, + [2191] = {.lex_state = 44}, + [2192] = {.lex_state = 44}, + [2193] = {.lex_state = 44}, + [2194] = {.lex_state = 44}, + [2195] = {.lex_state = 44}, + [2196] = {.lex_state = 44}, + [2197] = {.lex_state = 44}, + [2198] = {.lex_state = 44}, + [2199] = {.lex_state = 44}, + [2200] = {.lex_state = 44}, + [2201] = {.lex_state = 44}, + [2202] = {.lex_state = 3}, + [2203] = {.lex_state = 3}, + [2204] = {.lex_state = 3}, + [2205] = {.lex_state = 3}, + [2206] = {.lex_state = 3}, + [2207] = {.lex_state = 3}, + [2208] = {.lex_state = 3}, + [2209] = {.lex_state = 3}, + [2210] = {.lex_state = 3}, + [2211] = {.lex_state = 3}, + [2212] = {.lex_state = 3}, + [2213] = {.lex_state = 3}, + [2214] = {.lex_state = 3}, + [2215] = {.lex_state = 3}, + [2216] = {.lex_state = 3}, + [2217] = {.lex_state = 3}, + [2218] = {.lex_state = 3}, + [2219] = {.lex_state = 3}, + [2220] = {.lex_state = 3}, + [2221] = {.lex_state = 3}, + [2222] = {.lex_state = 3}, + [2223] = {.lex_state = 3}, + [2224] = {.lex_state = 3}, + [2225] = {.lex_state = 3}, + [2226] = {.lex_state = 3}, + [2227] = {.lex_state = 3}, + [2228] = {.lex_state = 3}, + [2229] = {.lex_state = 3}, + [2230] = {.lex_state = 3}, [2231] = {.lex_state = 1}, - [2232] = {.lex_state = 67}, - [2233] = {.lex_state = 67}, - [2234] = {.lex_state = 67}, + [2232] = {.lex_state = 39}, + [2233] = {.lex_state = 39}, + [2234] = {.lex_state = 39}, [2235] = {.lex_state = 1}, [2236] = {.lex_state = 1}, - [2237] = {.lex_state = 67}, - [2238] = {.lex_state = 37}, - [2239] = {.lex_state = 67}, + [2237] = {.lex_state = 39}, + [2238] = {.lex_state = 38}, + [2239] = {.lex_state = 39}, [2240] = {.lex_state = 1}, [2241] = {.lex_state = 1}, - [2242] = {.lex_state = 67}, + [2242] = {.lex_state = 39}, [2243] = {.lex_state = 1}, - [2244] = {.lex_state = 37}, - [2245] = {.lex_state = 37}, + [2244] = {.lex_state = 38}, + [2245] = {.lex_state = 38}, [2246] = {.lex_state = 1}, [2247] = {.lex_state = 1}, - [2248] = {.lex_state = 67}, - [2249] = {.lex_state = 67}, - [2250] = {.lex_state = 67}, + [2248] = {.lex_state = 39}, + [2249] = {.lex_state = 39}, + [2250] = {.lex_state = 39}, [2251] = {.lex_state = 1}, - [2252] = {.lex_state = 67}, - [2253] = {.lex_state = 67}, - [2254] = {.lex_state = 37}, - [2255] = {.lex_state = 67}, + [2252] = {.lex_state = 39}, + [2253] = {.lex_state = 39}, + [2254] = {.lex_state = 38}, + [2255] = {.lex_state = 39}, [2256] = {.lex_state = 1}, - [2257] = {.lex_state = 67}, - [2258] = {.lex_state = 37}, + [2257] = {.lex_state = 39}, + [2258] = {.lex_state = 38}, [2259] = {.lex_state = 1}, [2260] = {.lex_state = 1}, - [2261] = {.lex_state = 37}, - [2262] = {.lex_state = 67}, - [2263] = {.lex_state = 67}, + [2261] = {.lex_state = 38}, + [2262] = {.lex_state = 39}, + [2263] = {.lex_state = 39}, [2264] = {.lex_state = 1}, - [2265] = {.lex_state = 67}, - [2266] = {.lex_state = 37}, + [2265] = {.lex_state = 39}, + [2266] = {.lex_state = 38}, [2267] = {.lex_state = 1}, [2268] = {.lex_state = 1}, - [2269] = {.lex_state = 37}, + [2269] = {.lex_state = 38}, [2270] = {.lex_state = 1}, - [2271] = {.lex_state = 67}, - [2272] = {.lex_state = 67}, - [2273] = {.lex_state = 37}, + [2271] = {.lex_state = 39}, + [2272] = {.lex_state = 39}, + [2273] = {.lex_state = 38}, [2274] = {.lex_state = 1}, - [2275] = {.lex_state = 67}, + [2275] = {.lex_state = 39}, [2276] = {.lex_state = 1}, - [2277] = {.lex_state = 67}, - [2278] = {.lex_state = 67}, + [2277] = {.lex_state = 39}, + [2278] = {.lex_state = 39}, [2279] = {.lex_state = 1}, - [2280] = {.lex_state = 67}, + [2280] = {.lex_state = 39}, [2281] = {.lex_state = 1}, - [2282] = {.lex_state = 37}, + [2282] = {.lex_state = 38}, [2283] = {.lex_state = 1}, - [2284] = {.lex_state = 37}, - [2285] = {.lex_state = 67}, - [2286] = {.lex_state = 67}, + [2284] = {.lex_state = 38}, + [2285] = {.lex_state = 39}, + [2286] = {.lex_state = 39}, [2287] = {.lex_state = 1}, - [2288] = {.lex_state = 67}, + [2288] = {.lex_state = 39}, [2289] = {.lex_state = 1}, - [2290] = {.lex_state = 67}, - [2291] = {.lex_state = 67}, - [2292] = {.lex_state = 37}, + [2290] = {.lex_state = 39}, + [2291] = {.lex_state = 39}, + [2292] = {.lex_state = 38}, [2293] = {.lex_state = 1}, [2294] = {.lex_state = 1}, - [2295] = {.lex_state = 67}, + [2295] = {.lex_state = 39}, [2296] = {.lex_state = 1}, - [2297] = {.lex_state = 37}, - [2298] = {.lex_state = 37}, + [2297] = {.lex_state = 38}, + [2298] = {.lex_state = 38}, [2299] = {.lex_state = 1}, - [2300] = {.lex_state = 67}, - [2301] = {.lex_state = 67}, - [2302] = {.lex_state = 37}, - [2303] = {.lex_state = 37}, + [2300] = {.lex_state = 39}, + [2301] = {.lex_state = 39}, + [2302] = {.lex_state = 38}, + [2303] = {.lex_state = 38}, [2304] = {.lex_state = 1}, - [2305] = {.lex_state = 67}, + [2305] = {.lex_state = 39}, [2306] = {.lex_state = 1}, [2307] = {.lex_state = 1}, - [2308] = {.lex_state = 34}, + [2308] = {.lex_state = 35}, [2309] = {.lex_state = 1}, - [2310] = {.lex_state = 37}, + [2310] = {.lex_state = 38}, [2311] = {.lex_state = 1}, - [2312] = {.lex_state = 67}, - [2313] = {.lex_state = 67}, + [2312] = {.lex_state = 39}, + [2313] = {.lex_state = 39}, [2314] = {.lex_state = 1}, - [2315] = {.lex_state = 37}, - [2316] = {.lex_state = 67}, + [2315] = {.lex_state = 38}, + [2316] = {.lex_state = 39}, [2317] = {.lex_state = 1}, - [2318] = {.lex_state = 67}, - [2319] = {.lex_state = 67}, + [2318] = {.lex_state = 39}, + [2319] = {.lex_state = 39}, [2320] = {.lex_state = 1}, [2321] = {.lex_state = 1}, - [2322] = {.lex_state = 67}, + [2322] = {.lex_state = 39}, [2323] = {.lex_state = 1}, - [2324] = {.lex_state = 37}, - [2325] = {.lex_state = 37}, - [2326] = {.lex_state = 37}, + [2324] = {.lex_state = 38}, + [2325] = {.lex_state = 38}, + [2326] = {.lex_state = 38}, [2327] = {.lex_state = 1}, - [2328] = {.lex_state = 67}, + [2328] = {.lex_state = 39}, [2329] = {.lex_state = 1}, - [2330] = {.lex_state = 67}, - [2331] = {.lex_state = 67}, - [2332] = {.lex_state = 34}, - [2333] = {.lex_state = 67}, - [2334] = {.lex_state = 67}, + [2330] = {.lex_state = 39}, + [2331] = {.lex_state = 39}, + [2332] = {.lex_state = 35}, + [2333] = {.lex_state = 39}, + [2334] = {.lex_state = 39}, [2335] = {.lex_state = 1}, - [2336] = {.lex_state = 37}, + [2336] = {.lex_state = 38}, [2337] = {.lex_state = 1}, - [2338] = {.lex_state = 67}, - [2339] = {.lex_state = 67}, - [2340] = {.lex_state = 67}, - [2341] = {.lex_state = 67}, + [2338] = {.lex_state = 39}, + [2339] = {.lex_state = 39}, + [2340] = {.lex_state = 39}, + [2341] = {.lex_state = 39}, [2342] = {.lex_state = 1}, [2343] = {.lex_state = 1}, - [2344] = {.lex_state = 37}, - [2345] = {.lex_state = 67}, + [2344] = {.lex_state = 38}, + [2345] = {.lex_state = 39}, [2346] = {.lex_state = 1}, [2347] = {.lex_state = 1}, - [2348] = {.lex_state = 37}, - [2349] = {.lex_state = 67}, + [2348] = {.lex_state = 38}, + [2349] = {.lex_state = 39}, [2350] = {.lex_state = 1}, [2351] = {.lex_state = 1}, - [2352] = {.lex_state = 37}, - [2353] = {.lex_state = 67}, - [2354] = {.lex_state = 67}, + [2352] = {.lex_state = 38}, + [2353] = {.lex_state = 39}, + [2354] = {.lex_state = 39}, [2355] = {.lex_state = 1}, [2356] = {.lex_state = 1}, - [2357] = {.lex_state = 34}, - [2358] = {.lex_state = 67}, - [2359] = {.lex_state = 67}, + [2357] = {.lex_state = 35}, + [2358] = {.lex_state = 39}, + [2359] = {.lex_state = 39}, [2360] = {.lex_state = 1}, [2361] = {.lex_state = 1}, - [2362] = {.lex_state = 37}, - [2363] = {.lex_state = 37}, - [2364] = {.lex_state = 37}, - [2365] = {.lex_state = 67}, + [2362] = {.lex_state = 38}, + [2363] = {.lex_state = 38}, + [2364] = {.lex_state = 38}, + [2365] = {.lex_state = 39}, [2366] = {.lex_state = 1}, - [2367] = {.lex_state = 37}, - [2368] = {.lex_state = 37}, + [2367] = {.lex_state = 38}, + [2368] = {.lex_state = 38}, [2369] = {.lex_state = 1}, - [2370] = {.lex_state = 67}, - [2371] = {.lex_state = 67}, + [2370] = {.lex_state = 39}, + [2371] = {.lex_state = 39}, [2372] = {.lex_state = 1}, [2373] = {.lex_state = 1}, - [2374] = {.lex_state = 67}, + [2374] = {.lex_state = 39}, [2375] = {.lex_state = 1}, [2376] = {.lex_state = 1}, [2377] = {.lex_state = 1}, - [2378] = {.lex_state = 67}, - [2379] = {.lex_state = 67}, - [2380] = {.lex_state = 67}, + [2378] = {.lex_state = 39}, + [2379] = {.lex_state = 39}, + [2380] = {.lex_state = 39}, [2381] = {.lex_state = 1}, - [2382] = {.lex_state = 32}, - [2383] = {.lex_state = 32}, - [2384] = {.lex_state = 32}, - [2385] = {.lex_state = 32}, - [2386] = {.lex_state = 32}, - [2387] = {.lex_state = 32}, - [2388] = {.lex_state = 68}, - [2389] = {.lex_state = 32}, - [2390] = {.lex_state = 68}, - [2391] = {.lex_state = 32}, - [2392] = {.lex_state = 68}, - [2393] = {.lex_state = 32}, - [2394] = {.lex_state = 68}, - [2395] = {.lex_state = 32}, - [2396] = {.lex_state = 68}, - [2397] = {.lex_state = 32}, - [2398] = {.lex_state = 68}, - [2399] = {.lex_state = 32}, - [2400] = {.lex_state = 68}, - [2401] = {.lex_state = 33}, - [2402] = {.lex_state = 68}, - [2403] = {.lex_state = 32}, - [2404] = {.lex_state = 32}, - [2405] = {.lex_state = 32}, - [2406] = {.lex_state = 68}, - [2407] = {.lex_state = 33}, - [2408] = {.lex_state = 68}, - [2409] = {.lex_state = 33}, - [2410] = {.lex_state = 32}, - [2411] = {.lex_state = 68}, - [2412] = {.lex_state = 68}, - [2413] = {.lex_state = 68}, - [2414] = {.lex_state = 32}, - [2415] = {.lex_state = 32}, - [2416] = {.lex_state = 32}, - [2417] = {.lex_state = 68}, - [2418] = {.lex_state = 32}, - [2419] = {.lex_state = 68}, - [2420] = {.lex_state = 68}, - [2421] = {.lex_state = 32}, - [2422] = {.lex_state = 33}, - [2423] = {.lex_state = 68}, - [2424] = {.lex_state = 68}, - [2425] = {.lex_state = 68}, - [2426] = {.lex_state = 68}, - [2427] = {.lex_state = 32}, - [2428] = {.lex_state = 32}, - [2429] = {.lex_state = 68}, - [2430] = {.lex_state = 68}, - [2431] = {.lex_state = 32}, - [2432] = {.lex_state = 32}, - [2433] = {.lex_state = 68}, - [2434] = {.lex_state = 33}, - [2435] = {.lex_state = 32}, - [2436] = {.lex_state = 32}, - [2437] = {.lex_state = 32}, - [2438] = {.lex_state = 68}, - [2439] = {.lex_state = 32}, - [2440] = {.lex_state = 68}, - [2441] = {.lex_state = 68}, - [2442] = {.lex_state = 32}, - [2443] = {.lex_state = 68}, - [2444] = {.lex_state = 68}, - [2445] = {.lex_state = 32}, - [2446] = {.lex_state = 32}, - [2447] = {.lex_state = 68}, - [2448] = {.lex_state = 32}, - [2449] = {.lex_state = 32}, - [2450] = {.lex_state = 68}, - [2451] = {.lex_state = 32}, - [2452] = {.lex_state = 68}, - [2453] = {.lex_state = 32}, - [2454] = {.lex_state = 68}, - [2455] = {.lex_state = 68}, - [2456] = {.lex_state = 32}, - [2457] = {.lex_state = 68}, - [2458] = {.lex_state = 68}, - [2459] = {.lex_state = 32}, - [2460] = {.lex_state = 68}, - [2461] = {.lex_state = 68}, - [2462] = {.lex_state = 32}, - [2463] = {.lex_state = 32}, - [2464] = {.lex_state = 68}, - [2465] = {.lex_state = 68}, - [2466] = {.lex_state = 32}, - [2467] = {.lex_state = 32}, - [2468] = {.lex_state = 68}, - [2469] = {.lex_state = 68}, - [2470] = {.lex_state = 32}, - [2471] = {.lex_state = 68}, - [2472] = {.lex_state = 68}, - [2473] = {.lex_state = 32}, - [2474] = {.lex_state = 32}, - [2475] = {.lex_state = 68}, - [2476] = {.lex_state = 32}, - [2477] = {.lex_state = 68}, - [2478] = {.lex_state = 32}, - [2479] = {.lex_state = 68}, - [2480] = {.lex_state = 32}, - [2481] = {.lex_state = 32}, - [2482] = {.lex_state = 32}, - [2483] = {.lex_state = 68}, - [2484] = {.lex_state = 32}, - [2485] = {.lex_state = 68}, - [2486] = {.lex_state = 32}, - [2487] = {.lex_state = 68}, - [2488] = {.lex_state = 68}, - [2489] = {.lex_state = 32}, - [2490] = {.lex_state = 32}, - [2491] = {.lex_state = 32}, - [2492] = {.lex_state = 68}, - [2493] = {.lex_state = 32}, - [2494] = {.lex_state = 68}, - [2495] = {.lex_state = 32}, - [2496] = {.lex_state = 32}, - [2497] = {.lex_state = 68}, - [2498] = {.lex_state = 68}, - [2499] = {.lex_state = 32}, - [2500] = {.lex_state = 68}, - [2501] = {.lex_state = 32}, - [2502] = {.lex_state = 68}, - [2503] = {.lex_state = 68}, - [2504] = {.lex_state = 68}, - [2505] = {.lex_state = 32}, - [2506] = {.lex_state = 68}, - [2507] = {.lex_state = 32}, - [2508] = {.lex_state = 32}, - [2509] = {.lex_state = 34}, - [2510] = {.lex_state = 67}, - [2511] = {.lex_state = 34}, + [2382] = {.lex_state = 33}, + [2383] = {.lex_state = 33}, + [2384] = {.lex_state = 33}, + [2385] = {.lex_state = 33}, + [2386] = {.lex_state = 33}, + [2387] = {.lex_state = 33}, + [2388] = {.lex_state = 69}, + [2389] = {.lex_state = 33}, + [2390] = {.lex_state = 69}, + [2391] = {.lex_state = 33}, + [2392] = {.lex_state = 69}, + [2393] = {.lex_state = 33}, + [2394] = {.lex_state = 69}, + [2395] = {.lex_state = 33}, + [2396] = {.lex_state = 69}, + [2397] = {.lex_state = 33}, + [2398] = {.lex_state = 69}, + [2399] = {.lex_state = 33}, + [2400] = {.lex_state = 69}, + [2401] = {.lex_state = 34}, + [2402] = {.lex_state = 69}, + [2403] = {.lex_state = 33}, + [2404] = {.lex_state = 33}, + [2405] = {.lex_state = 33}, + [2406] = {.lex_state = 69}, + [2407] = {.lex_state = 34}, + [2408] = {.lex_state = 69}, + [2409] = {.lex_state = 34}, + [2410] = {.lex_state = 33}, + [2411] = {.lex_state = 69}, + [2412] = {.lex_state = 69}, + [2413] = {.lex_state = 69}, + [2414] = {.lex_state = 33}, + [2415] = {.lex_state = 33}, + [2416] = {.lex_state = 33}, + [2417] = {.lex_state = 69}, + [2418] = {.lex_state = 33}, + [2419] = {.lex_state = 69}, + [2420] = {.lex_state = 69}, + [2421] = {.lex_state = 33}, + [2422] = {.lex_state = 34}, + [2423] = {.lex_state = 69}, + [2424] = {.lex_state = 69}, + [2425] = {.lex_state = 69}, + [2426] = {.lex_state = 69}, + [2427] = {.lex_state = 33}, + [2428] = {.lex_state = 33}, + [2429] = {.lex_state = 69}, + [2430] = {.lex_state = 69}, + [2431] = {.lex_state = 33}, + [2432] = {.lex_state = 33}, + [2433] = {.lex_state = 69}, + [2434] = {.lex_state = 34}, + [2435] = {.lex_state = 33}, + [2436] = {.lex_state = 33}, + [2437] = {.lex_state = 33}, + [2438] = {.lex_state = 69}, + [2439] = {.lex_state = 33}, + [2440] = {.lex_state = 69}, + [2441] = {.lex_state = 69}, + [2442] = {.lex_state = 33}, + [2443] = {.lex_state = 69}, + [2444] = {.lex_state = 69}, + [2445] = {.lex_state = 33}, + [2446] = {.lex_state = 33}, + [2447] = {.lex_state = 69}, + [2448] = {.lex_state = 33}, + [2449] = {.lex_state = 33}, + [2450] = {.lex_state = 69}, + [2451] = {.lex_state = 33}, + [2452] = {.lex_state = 69}, + [2453] = {.lex_state = 33}, + [2454] = {.lex_state = 69}, + [2455] = {.lex_state = 69}, + [2456] = {.lex_state = 33}, + [2457] = {.lex_state = 69}, + [2458] = {.lex_state = 69}, + [2459] = {.lex_state = 33}, + [2460] = {.lex_state = 69}, + [2461] = {.lex_state = 69}, + [2462] = {.lex_state = 33}, + [2463] = {.lex_state = 33}, + [2464] = {.lex_state = 69}, + [2465] = {.lex_state = 69}, + [2466] = {.lex_state = 33}, + [2467] = {.lex_state = 33}, + [2468] = {.lex_state = 69}, + [2469] = {.lex_state = 69}, + [2470] = {.lex_state = 33}, + [2471] = {.lex_state = 69}, + [2472] = {.lex_state = 69}, + [2473] = {.lex_state = 33}, + [2474] = {.lex_state = 33}, + [2475] = {.lex_state = 69}, + [2476] = {.lex_state = 33}, + [2477] = {.lex_state = 69}, + [2478] = {.lex_state = 33}, + [2479] = {.lex_state = 69}, + [2480] = {.lex_state = 33}, + [2481] = {.lex_state = 33}, + [2482] = {.lex_state = 33}, + [2483] = {.lex_state = 69}, + [2484] = {.lex_state = 33}, + [2485] = {.lex_state = 69}, + [2486] = {.lex_state = 33}, + [2487] = {.lex_state = 69}, + [2488] = {.lex_state = 69}, + [2489] = {.lex_state = 33}, + [2490] = {.lex_state = 33}, + [2491] = {.lex_state = 33}, + [2492] = {.lex_state = 69}, + [2493] = {.lex_state = 33}, + [2494] = {.lex_state = 69}, + [2495] = {.lex_state = 33}, + [2496] = {.lex_state = 33}, + [2497] = {.lex_state = 69}, + [2498] = {.lex_state = 69}, + [2499] = {.lex_state = 33}, + [2500] = {.lex_state = 69}, + [2501] = {.lex_state = 33}, + [2502] = {.lex_state = 69}, + [2503] = {.lex_state = 69}, + [2504] = {.lex_state = 69}, + [2505] = {.lex_state = 33}, + [2506] = {.lex_state = 69}, + [2507] = {.lex_state = 33}, + [2508] = {.lex_state = 33}, + [2509] = {.lex_state = 35}, + [2510] = {.lex_state = 39}, + [2511] = {.lex_state = 35}, [2512] = {.lex_state = 1}, - [2513] = {.lex_state = 67}, - [2514] = {.lex_state = 37}, - [2515] = {.lex_state = 37}, + [2513] = {.lex_state = 39}, + [2514] = {.lex_state = 38}, + [2515] = {.lex_state = 38}, [2516] = {.lex_state = 1}, - [2517] = {.lex_state = 4}, - [2518] = {.lex_state = 4}, - [2519] = {.lex_state = 4}, - [2520] = {.lex_state = 4}, - [2521] = {.lex_state = 4}, - [2522] = {.lex_state = 4}, - [2523] = {.lex_state = 4}, - [2524] = {.lex_state = 4}, - [2525] = {.lex_state = 4}, - [2526] = {.lex_state = 4}, - [2527] = {.lex_state = 4}, - [2528] = {.lex_state = 4}, - [2529] = {.lex_state = 4}, - [2530] = {.lex_state = 4}, - [2531] = {.lex_state = 4}, - [2532] = {.lex_state = 4}, - [2533] = {.lex_state = 4}, - [2534] = {.lex_state = 4}, - [2535] = {.lex_state = 4}, - [2536] = {.lex_state = 4}, - [2537] = {.lex_state = 4}, - [2538] = {.lex_state = 4}, - [2539] = {.lex_state = 4}, - [2540] = {.lex_state = 4}, - [2541] = {.lex_state = 4}, - [2542] = {.lex_state = 4}, - [2543] = {.lex_state = 4}, - [2544] = {.lex_state = 4}, - [2545] = {.lex_state = 4}, - [2546] = {.lex_state = 4}, - [2547] = {.lex_state = 4}, - [2548] = {.lex_state = 4}, - [2549] = {.lex_state = 4}, - [2550] = {.lex_state = 4}, - [2551] = {.lex_state = 4}, - [2552] = {.lex_state = 4}, - [2553] = {.lex_state = 4}, - [2554] = {.lex_state = 4}, - [2555] = {.lex_state = 4}, - [2556] = {.lex_state = 4}, - [2557] = {.lex_state = 4}, - [2558] = {.lex_state = 4}, - [2559] = {.lex_state = 4}, - [2560] = {.lex_state = 4}, - [2561] = {.lex_state = 4}, - [2562] = {.lex_state = 4}, - [2563] = {.lex_state = 4}, - [2564] = {.lex_state = 4}, - [2565] = {.lex_state = 4}, - [2566] = {.lex_state = 4}, - [2567] = {.lex_state = 4}, - [2568] = {.lex_state = 4}, - [2569] = {.lex_state = 4}, - [2570] = {.lex_state = 4}, - [2571] = {.lex_state = 4}, - [2572] = {.lex_state = 4}, - [2573] = {.lex_state = 4}, - [2574] = {.lex_state = 4}, - [2575] = {.lex_state = 4}, - [2576] = {.lex_state = 4}, - [2577] = {.lex_state = 4}, - [2578] = {.lex_state = 4}, - [2579] = {.lex_state = 4}, - [2580] = {.lex_state = 4}, - [2581] = {.lex_state = 4}, - [2582] = {.lex_state = 4}, - [2583] = {.lex_state = 4}, - [2584] = {.lex_state = 4}, - [2585] = {.lex_state = 4}, - [2586] = {.lex_state = 4}, - [2587] = {.lex_state = 4}, - [2588] = {.lex_state = 4}, - [2589] = {.lex_state = 4}, - [2590] = {.lex_state = 4}, - [2591] = {.lex_state = 4}, - [2592] = {.lex_state = 4}, - [2593] = {.lex_state = 4}, - [2594] = {.lex_state = 4}, - [2595] = {.lex_state = 4}, - [2596] = {.lex_state = 4}, - [2597] = {.lex_state = 4}, - [2598] = {.lex_state = 4}, - [2599] = {.lex_state = 4}, - [2600] = {.lex_state = 4}, - [2601] = {.lex_state = 4}, - [2602] = {.lex_state = 4}, - [2603] = {.lex_state = 4}, - [2604] = {.lex_state = 4}, - [2605] = {.lex_state = 4}, - [2606] = {.lex_state = 4}, - [2607] = {.lex_state = 4}, - [2608] = {.lex_state = 4}, - [2609] = {.lex_state = 4}, - [2610] = {.lex_state = 4}, - [2611] = {.lex_state = 4}, - [2612] = {.lex_state = 4}, - [2613] = {.lex_state = 4}, - [2614] = {.lex_state = 4}, - [2615] = {.lex_state = 4}, - [2616] = {.lex_state = 4}, - [2617] = {.lex_state = 4}, - [2618] = {.lex_state = 4}, - [2619] = {.lex_state = 4}, - [2620] = {.lex_state = 4}, - [2621] = {.lex_state = 4}, - [2622] = {.lex_state = 4}, - [2623] = {.lex_state = 4}, - [2624] = {.lex_state = 4}, - [2625] = {.lex_state = 4}, - [2626] = {.lex_state = 4}, - [2627] = {.lex_state = 4}, - [2628] = {.lex_state = 4}, - [2629] = {.lex_state = 4}, - [2630] = {.lex_state = 4}, - [2631] = {.lex_state = 4}, - [2632] = {.lex_state = 4}, - [2633] = {.lex_state = 4}, - [2634] = {.lex_state = 4}, - [2635] = {.lex_state = 4}, - [2636] = {.lex_state = 4}, - [2637] = {.lex_state = 4}, - [2638] = {.lex_state = 4}, - [2639] = {.lex_state = 4}, - [2640] = {.lex_state = 4}, - [2641] = {.lex_state = 4}, - [2642] = {.lex_state = 4}, - [2643] = {.lex_state = 4}, - [2644] = {.lex_state = 4}, - [2645] = {.lex_state = 4}, - [2646] = {.lex_state = 4}, - [2647] = {.lex_state = 4}, - [2648] = {.lex_state = 4}, - [2649] = {.lex_state = 4}, - [2650] = {.lex_state = 4}, - [2651] = {.lex_state = 4}, - [2652] = {.lex_state = 4}, - [2653] = {.lex_state = 4}, - [2654] = {.lex_state = 4}, - [2655] = {.lex_state = 4}, - [2656] = {.lex_state = 4}, - [2657] = {.lex_state = 4}, - [2658] = {.lex_state = 4}, - [2659] = {.lex_state = 4}, - [2660] = {.lex_state = 4}, - [2661] = {.lex_state = 4}, - [2662] = {.lex_state = 4}, - [2663] = {.lex_state = 4}, - [2664] = {.lex_state = 4}, - [2665] = {.lex_state = 4}, - [2666] = {.lex_state = 4}, - [2667] = {.lex_state = 4}, - [2668] = {.lex_state = 4}, - [2669] = {.lex_state = 4}, - [2670] = {.lex_state = 4}, - [2671] = {.lex_state = 4}, - [2672] = {.lex_state = 4}, - [2673] = {.lex_state = 4}, - [2674] = {.lex_state = 4}, - [2675] = {.lex_state = 4}, - [2676] = {.lex_state = 4}, - [2677] = {.lex_state = 4}, - [2678] = {.lex_state = 4}, - [2679] = {.lex_state = 4}, - [2680] = {.lex_state = 4}, - [2681] = {.lex_state = 4}, - [2682] = {.lex_state = 4}, - [2683] = {.lex_state = 4}, - [2684] = {.lex_state = 4}, - [2685] = {.lex_state = 4}, - [2686] = {.lex_state = 4}, - [2687] = {.lex_state = 4}, - [2688] = {.lex_state = 4}, - [2689] = {.lex_state = 4}, - [2690] = {.lex_state = 4}, - [2691] = {.lex_state = 4}, - [2692] = {.lex_state = 4}, - [2693] = {.lex_state = 4}, - [2694] = {.lex_state = 4}, - [2695] = {.lex_state = 4}, - [2696] = {.lex_state = 4}, - [2697] = {.lex_state = 4}, - [2698] = {.lex_state = 4}, - [2699] = {.lex_state = 4}, - [2700] = {.lex_state = 4}, - [2701] = {.lex_state = 4}, - [2702] = {.lex_state = 4}, - [2703] = {.lex_state = 4}, - [2704] = {.lex_state = 4}, - [2705] = {.lex_state = 4}, - [2706] = {.lex_state = 4}, - [2707] = {.lex_state = 4}, - [2708] = {.lex_state = 4}, - [2709] = {.lex_state = 4}, - [2710] = {.lex_state = 4}, - [2711] = {.lex_state = 4}, - [2712] = {.lex_state = 4}, - [2713] = {.lex_state = 4}, - [2714] = {.lex_state = 4}, - [2715] = {.lex_state = 4}, - [2716] = {.lex_state = 4}, - [2717] = {.lex_state = 4}, - [2718] = {.lex_state = 4}, - [2719] = {.lex_state = 4}, - [2720] = {.lex_state = 4}, - [2721] = {.lex_state = 4}, - [2722] = {.lex_state = 4}, - [2723] = {.lex_state = 4}, - [2724] = {.lex_state = 4}, - [2725] = {.lex_state = 4}, - [2726] = {.lex_state = 4}, - [2727] = {.lex_state = 4}, - [2728] = {.lex_state = 4}, - [2729] = {.lex_state = 4}, - [2730] = {.lex_state = 4}, - [2731] = {.lex_state = 4}, - [2732] = {.lex_state = 4}, - [2733] = {.lex_state = 4}, - [2734] = {.lex_state = 4}, - [2735] = {.lex_state = 4}, - [2736] = {.lex_state = 4}, - [2737] = {.lex_state = 4}, - [2738] = {.lex_state = 4}, - [2739] = {.lex_state = 4}, - [2740] = {.lex_state = 4}, - [2741] = {.lex_state = 4}, - [2742] = {.lex_state = 4}, - [2743] = {.lex_state = 4}, - [2744] = {.lex_state = 4}, - [2745] = {.lex_state = 4}, - [2746] = {.lex_state = 4}, - [2747] = {.lex_state = 4}, - [2748] = {.lex_state = 4}, - [2749] = {.lex_state = 4}, - [2750] = {.lex_state = 4}, - [2751] = {.lex_state = 4}, - [2752] = {.lex_state = 4}, - [2753] = {.lex_state = 4}, - [2754] = {.lex_state = 4}, - [2755] = {.lex_state = 4}, - [2756] = {.lex_state = 4}, - [2757] = {.lex_state = 4}, - [2758] = {.lex_state = 4}, - [2759] = {.lex_state = 4}, - [2760] = {.lex_state = 4}, - [2761] = {.lex_state = 4}, - [2762] = {.lex_state = 68}, - [2763] = {.lex_state = 4}, - [2764] = {.lex_state = 4}, - [2765] = {.lex_state = 4}, - [2766] = {.lex_state = 4}, - [2767] = {.lex_state = 4}, - [2768] = {.lex_state = 4}, - [2769] = {.lex_state = 4}, - [2770] = {.lex_state = 4}, - [2771] = {.lex_state = 4}, - [2772] = {.lex_state = 68}, - [2773] = {.lex_state = 4}, - [2774] = {.lex_state = 4}, - [2775] = {.lex_state = 4}, - [2776] = {.lex_state = 4}, - [2777] = {.lex_state = 4}, - [2778] = {.lex_state = 4}, - [2779] = {.lex_state = 4}, - [2780] = {.lex_state = 4}, - [2781] = {.lex_state = 4}, - [2782] = {.lex_state = 4}, - [2783] = {.lex_state = 4}, - [2784] = {.lex_state = 4}, - [2785] = {.lex_state = 4}, - [2786] = {.lex_state = 4}, - [2787] = {.lex_state = 4}, - [2788] = {.lex_state = 4}, - [2789] = {.lex_state = 4}, - [2790] = {.lex_state = 4}, - [2791] = {.lex_state = 4}, - [2792] = {.lex_state = 4}, - [2793] = {.lex_state = 4}, - [2794] = {.lex_state = 4}, - [2795] = {.lex_state = 4}, - [2796] = {.lex_state = 4}, - [2797] = {.lex_state = 4}, - [2798] = {.lex_state = 4}, - [2799] = {.lex_state = 4}, - [2800] = {.lex_state = 4}, - [2801] = {.lex_state = 4}, - [2802] = {.lex_state = 4}, - [2803] = {.lex_state = 4}, - [2804] = {.lex_state = 4}, - [2805] = {.lex_state = 4}, - [2806] = {.lex_state = 4}, - [2807] = {.lex_state = 4}, - [2808] = {.lex_state = 4}, - [2809] = {.lex_state = 4}, - [2810] = {.lex_state = 4}, - [2811] = {.lex_state = 4}, - [2812] = {.lex_state = 4}, - [2813] = {.lex_state = 4}, - [2814] = {.lex_state = 4}, - [2815] = {.lex_state = 4}, - [2816] = {.lex_state = 4}, - [2817] = {.lex_state = 4}, - [2818] = {.lex_state = 4}, - [2819] = {.lex_state = 4}, - [2820] = {.lex_state = 4}, - [2821] = {.lex_state = 4}, - [2822] = {.lex_state = 4}, - [2823] = {.lex_state = 4}, - [2824] = {.lex_state = 4}, - [2825] = {.lex_state = 4}, - [2826] = {.lex_state = 4}, - [2827] = {.lex_state = 4}, - [2828] = {.lex_state = 4}, - [2829] = {.lex_state = 4}, - [2830] = {.lex_state = 4}, - [2831] = {.lex_state = 4}, - [2832] = {.lex_state = 4}, - [2833] = {.lex_state = 4}, - [2834] = {.lex_state = 4}, - [2835] = {.lex_state = 4}, - [2836] = {.lex_state = 4}, - [2837] = {.lex_state = 4}, - [2838] = {.lex_state = 4}, - [2839] = {.lex_state = 4}, - [2840] = {.lex_state = 4}, - [2841] = {.lex_state = 4}, - [2842] = {.lex_state = 4}, - [2843] = {.lex_state = 4}, - [2844] = {.lex_state = 4}, - [2845] = {.lex_state = 4}, - [2846] = {.lex_state = 4}, - [2847] = {.lex_state = 4}, - [2848] = {.lex_state = 4}, - [2849] = {.lex_state = 4}, - [2850] = {.lex_state = 4}, - [2851] = {.lex_state = 4}, - [2852] = {.lex_state = 4}, - [2853] = {.lex_state = 4}, - [2854] = {.lex_state = 4}, - [2855] = {.lex_state = 4}, - [2856] = {.lex_state = 4}, - [2857] = {.lex_state = 4}, - [2858] = {.lex_state = 4}, - [2859] = {.lex_state = 4}, - [2860] = {.lex_state = 4}, - [2861] = {.lex_state = 4}, - [2862] = {.lex_state = 4}, - [2863] = {.lex_state = 4}, - [2864] = {.lex_state = 4}, - [2865] = {.lex_state = 4}, - [2866] = {.lex_state = 4}, - [2867] = {.lex_state = 4}, - [2868] = {.lex_state = 4}, - [2869] = {.lex_state = 4}, - [2870] = {.lex_state = 4}, - [2871] = {.lex_state = 4}, - [2872] = {.lex_state = 4}, - [2873] = {.lex_state = 4}, - [2874] = {.lex_state = 4}, - [2875] = {.lex_state = 4}, - [2876] = {.lex_state = 4}, - [2877] = {.lex_state = 4}, - [2878] = {.lex_state = 4}, - [2879] = {.lex_state = 4}, - [2880] = {.lex_state = 4}, - [2881] = {.lex_state = 4}, - [2882] = {.lex_state = 4}, - [2883] = {.lex_state = 4}, - [2884] = {.lex_state = 4}, - [2885] = {.lex_state = 4}, - [2886] = {.lex_state = 4}, - [2887] = {.lex_state = 4}, - [2888] = {.lex_state = 4}, - [2889] = {.lex_state = 4}, - [2890] = {.lex_state = 4}, - [2891] = {.lex_state = 4}, - [2892] = {.lex_state = 4}, - [2893] = {.lex_state = 4}, - [2894] = {.lex_state = 4}, - [2895] = {.lex_state = 4}, - [2896] = {.lex_state = 4}, - [2897] = {.lex_state = 4}, - [2898] = {.lex_state = 4}, - [2899] = {.lex_state = 4}, - [2900] = {.lex_state = 4}, - [2901] = {.lex_state = 4}, - [2902] = {.lex_state = 4}, - [2903] = {.lex_state = 4}, - [2904] = {.lex_state = 4}, - [2905] = {.lex_state = 4}, - [2906] = {.lex_state = 4}, - [2907] = {.lex_state = 4}, - [2908] = {.lex_state = 4}, - [2909] = {.lex_state = 4}, - [2910] = {.lex_state = 4}, - [2911] = {.lex_state = 4}, - [2912] = {.lex_state = 4}, - [2913] = {.lex_state = 4}, - [2914] = {.lex_state = 4}, - [2915] = {.lex_state = 4}, - [2916] = {.lex_state = 4}, - [2917] = {.lex_state = 4}, - [2918] = {.lex_state = 4}, - [2919] = {.lex_state = 4}, - [2920] = {.lex_state = 4}, - [2921] = {.lex_state = 4}, - [2922] = {.lex_state = 4}, - [2923] = {.lex_state = 4}, - [2924] = {.lex_state = 4}, - [2925] = {.lex_state = 4}, - [2926] = {.lex_state = 4}, - [2927] = {.lex_state = 4}, - [2928] = {.lex_state = 4}, - [2929] = {.lex_state = 4}, - [2930] = {.lex_state = 4}, - [2931] = {.lex_state = 4}, - [2932] = {.lex_state = 4}, - [2933] = {.lex_state = 4}, - [2934] = {.lex_state = 4}, - [2935] = {.lex_state = 4}, - [2936] = {.lex_state = 4}, - [2937] = {.lex_state = 4}, - [2938] = {.lex_state = 4}, - [2939] = {.lex_state = 4}, - [2940] = {.lex_state = 4}, - [2941] = {.lex_state = 4}, - [2942] = {.lex_state = 4}, - [2943] = {.lex_state = 4}, - [2944] = {.lex_state = 4}, - [2945] = {.lex_state = 4}, - [2946] = {.lex_state = 4}, - [2947] = {.lex_state = 4}, - [2948] = {.lex_state = 4}, - [2949] = {.lex_state = 4}, - [2950] = {.lex_state = 4}, - [2951] = {.lex_state = 4}, - [2952] = {.lex_state = 32}, - [2953] = {.lex_state = 4}, - [2954] = {.lex_state = 4}, - [2955] = {.lex_state = 4}, - [2956] = {.lex_state = 4}, - [2957] = {.lex_state = 4}, - [2958] = {.lex_state = 4}, - [2959] = {.lex_state = 4}, - [2960] = {.lex_state = 4}, - [2961] = {.lex_state = 4}, - [2962] = {.lex_state = 4}, - [2963] = {.lex_state = 4}, - [2964] = {.lex_state = 4}, - [2965] = {.lex_state = 4}, - [2966] = {.lex_state = 4}, - [2967] = {.lex_state = 4}, - [2968] = {.lex_state = 4}, - [2969] = {.lex_state = 4}, - [2970] = {.lex_state = 4}, - [2971] = {.lex_state = 4}, - [2972] = {.lex_state = 4}, - [2973] = {.lex_state = 4}, - [2974] = {.lex_state = 4}, - [2975] = {.lex_state = 4}, - [2976] = {.lex_state = 4}, - [2977] = {.lex_state = 4}, - [2978] = {.lex_state = 4}, - [2979] = {.lex_state = 4}, - [2980] = {.lex_state = 4}, - [2981] = {.lex_state = 4}, - [2982] = {.lex_state = 4}, - [2983] = {.lex_state = 4}, - [2984] = {.lex_state = 4}, - [2985] = {.lex_state = 4}, - [2986] = {.lex_state = 4}, - [2987] = {.lex_state = 4}, - [2988] = {.lex_state = 4}, - [2989] = {.lex_state = 4}, - [2990] = {.lex_state = 4}, - [2991] = {.lex_state = 4}, - [2992] = {.lex_state = 4}, - [2993] = {.lex_state = 4}, - [2994] = {.lex_state = 4}, - [2995] = {.lex_state = 4}, - [2996] = {.lex_state = 4}, - [2997] = {.lex_state = 4}, - [2998] = {.lex_state = 4}, - [2999] = {.lex_state = 4}, - [3000] = {.lex_state = 4}, - [3001] = {.lex_state = 4}, - [3002] = {.lex_state = 4}, - [3003] = {.lex_state = 4}, - [3004] = {.lex_state = 4}, - [3005] = {.lex_state = 4}, - [3006] = {.lex_state = 4}, - [3007] = {.lex_state = 4}, - [3008] = {.lex_state = 4}, - [3009] = {.lex_state = 4}, - [3010] = {.lex_state = 4}, - [3011] = {.lex_state = 68}, - [3012] = {.lex_state = 4}, - [3013] = {.lex_state = 4}, - [3014] = {.lex_state = 4}, - [3015] = {.lex_state = 4}, - [3016] = {.lex_state = 4}, - [3017] = {.lex_state = 4}, - [3018] = {.lex_state = 4}, - [3019] = {.lex_state = 4}, - [3020] = {.lex_state = 4}, - [3021] = {.lex_state = 4}, - [3022] = {.lex_state = 4}, - [3023] = {.lex_state = 4}, - [3024] = {.lex_state = 4}, - [3025] = {.lex_state = 4}, - [3026] = {.lex_state = 4}, - [3027] = {.lex_state = 4}, - [3028] = {.lex_state = 4}, - [3029] = {.lex_state = 4}, - [3030] = {.lex_state = 4}, - [3031] = {.lex_state = 4}, - [3032] = {.lex_state = 4}, - [3033] = {.lex_state = 4}, - [3034] = {.lex_state = 4}, - [3035] = {.lex_state = 4}, - [3036] = {.lex_state = 4}, - [3037] = {.lex_state = 4}, - [3038] = {.lex_state = 4}, - [3039] = {.lex_state = 4}, - [3040] = {.lex_state = 4}, - [3041] = {.lex_state = 4}, - [3042] = {.lex_state = 4}, - [3043] = {.lex_state = 4}, - [3044] = {.lex_state = 4}, - [3045] = {.lex_state = 4}, - [3046] = {.lex_state = 4}, - [3047] = {.lex_state = 4}, - [3048] = {.lex_state = 4}, - [3049] = {.lex_state = 4}, - [3050] = {.lex_state = 4}, - [3051] = {.lex_state = 4}, - [3052] = {.lex_state = 4}, - [3053] = {.lex_state = 4}, - [3054] = {.lex_state = 4}, - [3055] = {.lex_state = 4}, - [3056] = {.lex_state = 4}, - [3057] = {.lex_state = 4}, - [3058] = {.lex_state = 4}, - [3059] = {.lex_state = 4}, - [3060] = {.lex_state = 4}, - [3061] = {.lex_state = 4}, - [3062] = {.lex_state = 4}, - [3063] = {.lex_state = 4}, - [3064] = {.lex_state = 4}, - [3065] = {.lex_state = 4}, - [3066] = {.lex_state = 4}, - [3067] = {.lex_state = 4}, - [3068] = {.lex_state = 4}, - [3069] = {.lex_state = 4}, - [3070] = {.lex_state = 4}, - [3071] = {.lex_state = 4}, - [3072] = {.lex_state = 4}, - [3073] = {.lex_state = 4}, - [3074] = {.lex_state = 4}, - [3075] = {.lex_state = 4}, - [3076] = {.lex_state = 4}, - [3077] = {.lex_state = 4}, - [3078] = {.lex_state = 4}, - [3079] = {.lex_state = 4}, - [3080] = {.lex_state = 4}, - [3081] = {.lex_state = 4}, - [3082] = {.lex_state = 4}, - [3083] = {.lex_state = 4}, - [3084] = {.lex_state = 4}, - [3085] = {.lex_state = 4}, - [3086] = {.lex_state = 4}, - [3087] = {.lex_state = 4}, - [3088] = {.lex_state = 4}, - [3089] = {.lex_state = 4}, - [3090] = {.lex_state = 4}, - [3091] = {.lex_state = 4}, - [3092] = {.lex_state = 4}, - [3093] = {.lex_state = 4}, - [3094] = {.lex_state = 4}, - [3095] = {.lex_state = 4}, - [3096] = {.lex_state = 4}, - [3097] = {.lex_state = 4}, - [3098] = {.lex_state = 4}, - [3099] = {.lex_state = 4}, - [3100] = {.lex_state = 4}, - [3101] = {.lex_state = 4}, - [3102] = {.lex_state = 4}, - [3103] = {.lex_state = 4}, - [3104] = {.lex_state = 68}, - [3105] = {.lex_state = 4}, - [3106] = {.lex_state = 4}, - [3107] = {.lex_state = 4}, - [3108] = {.lex_state = 4}, - [3109] = {.lex_state = 4}, - [3110] = {.lex_state = 4}, - [3111] = {.lex_state = 4}, - [3112] = {.lex_state = 4}, - [3113] = {.lex_state = 4}, - [3114] = {.lex_state = 4}, - [3115] = {.lex_state = 4}, - [3116] = {.lex_state = 4}, - [3117] = {.lex_state = 4}, - [3118] = {.lex_state = 4}, - [3119] = {.lex_state = 4}, - [3120] = {.lex_state = 4}, - [3121] = {.lex_state = 4}, - [3122] = {.lex_state = 4}, - [3123] = {.lex_state = 4}, - [3124] = {.lex_state = 4}, - [3125] = {.lex_state = 4}, - [3126] = {.lex_state = 4}, - [3127] = {.lex_state = 4}, - [3128] = {.lex_state = 4}, - [3129] = {.lex_state = 4}, - [3130] = {.lex_state = 4}, - [3131] = {.lex_state = 4}, - [3132] = {.lex_state = 4}, - [3133] = {.lex_state = 4}, - [3134] = {.lex_state = 4}, - [3135] = {.lex_state = 4}, - [3136] = {.lex_state = 4}, - [3137] = {.lex_state = 4}, - [3138] = {.lex_state = 33}, - [3139] = {.lex_state = 4}, - [3140] = {.lex_state = 4}, - [3141] = {.lex_state = 4}, - [3142] = {.lex_state = 4}, - [3143] = {.lex_state = 4}, - [3144] = {.lex_state = 4}, - [3145] = {.lex_state = 4}, - [3146] = {.lex_state = 4}, - [3147] = {.lex_state = 4}, - [3148] = {.lex_state = 4}, - [3149] = {.lex_state = 4}, - [3150] = {.lex_state = 4}, - [3151] = {.lex_state = 4}, - [3152] = {.lex_state = 4}, - [3153] = {.lex_state = 4}, - [3154] = {.lex_state = 4}, - [3155] = {.lex_state = 4}, - [3156] = {.lex_state = 4}, - [3157] = {.lex_state = 4}, - [3158] = {.lex_state = 4}, - [3159] = {.lex_state = 4}, - [3160] = {.lex_state = 4}, - [3161] = {.lex_state = 4}, - [3162] = {.lex_state = 4}, - [3163] = {.lex_state = 4}, - [3164] = {.lex_state = 4}, - [3165] = {.lex_state = 4}, - [3166] = {.lex_state = 4}, - [3167] = {.lex_state = 4}, - [3168] = {.lex_state = 4}, - [3169] = {.lex_state = 4}, - [3170] = {.lex_state = 32}, - [3171] = {.lex_state = 4}, - [3172] = {.lex_state = 4}, - [3173] = {.lex_state = 32}, - [3174] = {.lex_state = 4}, - [3175] = {.lex_state = 33}, - [3176] = {.lex_state = 4}, - [3177] = {.lex_state = 33}, - [3178] = {.lex_state = 4}, - [3179] = {.lex_state = 4}, - [3180] = {.lex_state = 4}, - [3181] = {.lex_state = 4}, - [3182] = {.lex_state = 4}, - [3183] = {.lex_state = 4}, - [3184] = {.lex_state = 4}, - [3185] = {.lex_state = 4}, - [3186] = {.lex_state = 4}, - [3187] = {.lex_state = 32}, - [3188] = {.lex_state = 32}, - [3189] = {.lex_state = 4}, - [3190] = {.lex_state = 4}, - [3191] = {.lex_state = 4}, - [3192] = {.lex_state = 4}, - [3193] = {.lex_state = 4}, - [3194] = {.lex_state = 4}, - [3195] = {.lex_state = 4}, - [3196] = {.lex_state = 4}, - [3197] = {.lex_state = 4}, - [3198] = {.lex_state = 4}, - [3199] = {.lex_state = 4}, - [3200] = {.lex_state = 4}, - [3201] = {.lex_state = 4}, - [3202] = {.lex_state = 4}, - [3203] = {.lex_state = 33}, - [3204] = {.lex_state = 4}, - [3205] = {.lex_state = 4}, - [3206] = {.lex_state = 4}, - [3207] = {.lex_state = 33}, - [3208] = {.lex_state = 4}, - [3209] = {.lex_state = 4}, - [3210] = {.lex_state = 4}, - [3211] = {.lex_state = 4}, - [3212] = {.lex_state = 4}, - [3213] = {.lex_state = 4}, - [3214] = {.lex_state = 4}, - [3215] = {.lex_state = 4}, - [3216] = {.lex_state = 4}, - [3217] = {.lex_state = 4}, - [3218] = {.lex_state = 4}, - [3219] = {.lex_state = 4}, - [3220] = {.lex_state = 4}, - [3221] = {.lex_state = 4}, - [3222] = {.lex_state = 4}, - [3223] = {.lex_state = 4}, - [3224] = {.lex_state = 4}, - [3225] = {.lex_state = 4}, - [3226] = {.lex_state = 4}, - [3227] = {.lex_state = 4}, - [3228] = {.lex_state = 4}, - [3229] = {.lex_state = 4}, - [3230] = {.lex_state = 4}, - [3231] = {.lex_state = 4}, - [3232] = {.lex_state = 4}, - [3233] = {.lex_state = 4}, - [3234] = {.lex_state = 4}, - [3235] = {.lex_state = 4}, - [3236] = {.lex_state = 4}, - [3237] = {.lex_state = 4}, - [3238] = {.lex_state = 4}, - [3239] = {.lex_state = 4}, - [3240] = {.lex_state = 4}, - [3241] = {.lex_state = 4}, - [3242] = {.lex_state = 4}, - [3243] = {.lex_state = 4}, - [3244] = {.lex_state = 4}, - [3245] = {.lex_state = 4}, - [3246] = {.lex_state = 4}, - [3247] = {.lex_state = 4}, - [3248] = {.lex_state = 4}, - [3249] = {.lex_state = 4}, - [3250] = {.lex_state = 4}, - [3251] = {.lex_state = 4}, - [3252] = {.lex_state = 4}, - [3253] = {.lex_state = 4}, - [3254] = {.lex_state = 4}, - [3255] = {.lex_state = 4}, - [3256] = {.lex_state = 4}, - [3257] = {.lex_state = 52}, - [3258] = {.lex_state = 64}, - [3259] = {.lex_state = 61}, - [3260] = {.lex_state = 58}, - [3261] = {.lex_state = 66}, - [3262] = {.lex_state = 55}, - [3263] = {.lex_state = 44}, - [3264] = {.lex_state = 65}, - [3265] = {.lex_state = 60}, - [3266] = {.lex_state = 60}, - [3267] = {.lex_state = 62}, - [3268] = {.lex_state = 63}, - [3269] = {.lex_state = 49}, - [3270] = {.lex_state = 53}, - [3271] = {.lex_state = 57}, - [3272] = {.lex_state = 52}, - [3273] = {.lex_state = 51}, - [3274] = {.lex_state = 46}, - [3275] = {.lex_state = 43}, - [3276] = {.lex_state = 47}, - [3277] = {.lex_state = 44}, - [3278] = {.lex_state = 45}, - [3279] = {.lex_state = 48}, - [3280] = {.lex_state = 45}, - [3281] = {.lex_state = 48}, - [3282] = {.lex_state = 49}, - [3283] = {.lex_state = 56}, - [3284] = {.lex_state = 50}, - [3285] = {.lex_state = 54}, - [3286] = {.lex_state = 60}, - [3287] = {.lex_state = 51}, - [3288] = {.lex_state = 56}, - [3289] = {.lex_state = 50}, - [3290] = {.lex_state = 54}, - [3291] = {.lex_state = 60}, - [3292] = {.lex_state = 64}, - [3293] = {.lex_state = 61}, - [3294] = {.lex_state = 58}, - [3295] = {.lex_state = 66}, - [3296] = {.lex_state = 55}, - [3297] = {.lex_state = 60}, - [3298] = {.lex_state = 47}, - [3299] = {.lex_state = 43}, - [3300] = {.lex_state = 46}, - [3301] = {.lex_state = 51}, - [3302] = {.lex_state = 52}, - [3303] = {.lex_state = 57}, - [3304] = {.lex_state = 53}, - [3305] = {.lex_state = 63}, - [3306] = {.lex_state = 62}, - [3307] = {.lex_state = 60}, - [3308] = {.lex_state = 60}, - [3309] = {.lex_state = 65}, - [3310] = {.lex_state = 60}, - [3311] = {.lex_state = 55}, - [3312] = {.lex_state = 66}, - [3313] = {.lex_state = 58}, - [3314] = {.lex_state = 61}, - [3315] = {.lex_state = 64}, - [3316] = {.lex_state = 60}, - [3317] = {.lex_state = 54}, - [3318] = {.lex_state = 50}, - [3319] = {.lex_state = 56}, - [3320] = {.lex_state = 49}, - [3321] = {.lex_state = 48}, - [3322] = {.lex_state = 62}, - [3323] = {.lex_state = 63}, - [3324] = {.lex_state = 45}, - [3325] = {.lex_state = 44}, - [3326] = {.lex_state = 53}, - [3327] = {.lex_state = 57}, - [3328] = {.lex_state = 52}, - [3329] = {.lex_state = 51}, - [3330] = {.lex_state = 46}, - [3331] = {.lex_state = 43}, - [3332] = {.lex_state = 47}, - [3333] = {.lex_state = 47}, - [3334] = {.lex_state = 43}, - [3335] = {.lex_state = 46}, - [3336] = {.lex_state = 66}, - [3337] = {.lex_state = 52}, - [3338] = {.lex_state = 57}, - [3339] = {.lex_state = 53}, - [3340] = {.lex_state = 63}, - [3341] = {.lex_state = 62}, - [3342] = {.lex_state = 60}, - [3343] = {.lex_state = 60}, - [3344] = {.lex_state = 65}, - [3345] = {.lex_state = 55}, - [3346] = {.lex_state = 54}, - [3347] = {.lex_state = 58}, - [3348] = {.lex_state = 61}, - [3349] = {.lex_state = 64}, - [3350] = {.lex_state = 60}, - [3351] = {.lex_state = 54}, - [3352] = {.lex_state = 50}, - [3353] = {.lex_state = 56}, - [3354] = {.lex_state = 49}, - [3355] = {.lex_state = 48}, - [3356] = {.lex_state = 45}, - [3357] = {.lex_state = 44}, - [3358] = {.lex_state = 44}, - [3359] = {.lex_state = 45}, - [3360] = {.lex_state = 48}, - [3361] = {.lex_state = 49}, - [3362] = {.lex_state = 56}, - [3363] = {.lex_state = 50}, - [3364] = {.lex_state = 54}, - [3365] = {.lex_state = 60}, - [3366] = {.lex_state = 64}, - [3367] = {.lex_state = 61}, - [3368] = {.lex_state = 58}, - [3369] = {.lex_state = 66}, - [3370] = {.lex_state = 47}, - [3371] = {.lex_state = 43}, - [3372] = {.lex_state = 46}, - [3373] = {.lex_state = 51}, - [3374] = {.lex_state = 52}, - [3375] = {.lex_state = 57}, - [3376] = {.lex_state = 53}, - [3377] = {.lex_state = 63}, - [3378] = {.lex_state = 62}, - [3379] = {.lex_state = 60}, - [3380] = {.lex_state = 60}, - [3381] = {.lex_state = 65}, - [3382] = {.lex_state = 55}, - [3383] = {.lex_state = 55}, - [3384] = {.lex_state = 66}, - [3385] = {.lex_state = 58}, - [3386] = {.lex_state = 61}, - [3387] = {.lex_state = 64}, - [3388] = {.lex_state = 60}, - [3389] = {.lex_state = 54}, - [3390] = {.lex_state = 50}, - [3391] = {.lex_state = 56}, - [3392] = {.lex_state = 49}, - [3393] = {.lex_state = 48}, - [3394] = {.lex_state = 65}, - [3395] = {.lex_state = 60}, - [3396] = {.lex_state = 45}, - [3397] = {.lex_state = 44}, - [3398] = {.lex_state = 60}, - [3399] = {.lex_state = 62}, - [3400] = {.lex_state = 65}, - [3401] = {.lex_state = 53}, - [3402] = {.lex_state = 57}, - [3403] = {.lex_state = 52}, - [3404] = {.lex_state = 51}, - [3405] = {.lex_state = 46}, - [3406] = {.lex_state = 43}, - [3407] = {.lex_state = 47}, - [3408] = {.lex_state = 47}, - [3409] = {.lex_state = 43}, - [3410] = {.lex_state = 46}, - [3411] = {.lex_state = 51}, - [3412] = {.lex_state = 52}, - [3413] = {.lex_state = 57}, - [3414] = {.lex_state = 53}, - [3415] = {.lex_state = 63}, - [3416] = {.lex_state = 62}, - [3417] = {.lex_state = 60}, - [3418] = {.lex_state = 60}, - [3419] = {.lex_state = 65}, - [3420] = {.lex_state = 55}, - [3421] = {.lex_state = 66}, - [3422] = {.lex_state = 58}, - [3423] = {.lex_state = 61}, + [2517] = {.lex_state = 5}, + [2518] = {.lex_state = 5}, + [2519] = {.lex_state = 5}, + [2520] = {.lex_state = 5}, + [2521] = {.lex_state = 5}, + [2522] = {.lex_state = 5}, + [2523] = {.lex_state = 5}, + [2524] = {.lex_state = 5}, + [2525] = {.lex_state = 5}, + [2526] = {.lex_state = 5}, + [2527] = {.lex_state = 5}, + [2528] = {.lex_state = 5}, + [2529] = {.lex_state = 5}, + [2530] = {.lex_state = 5}, + [2531] = {.lex_state = 5}, + [2532] = {.lex_state = 5}, + [2533] = {.lex_state = 5}, + [2534] = {.lex_state = 5}, + [2535] = {.lex_state = 5}, + [2536] = {.lex_state = 5}, + [2537] = {.lex_state = 5}, + [2538] = {.lex_state = 5}, + [2539] = {.lex_state = 5}, + [2540] = {.lex_state = 5}, + [2541] = {.lex_state = 5}, + [2542] = {.lex_state = 5}, + [2543] = {.lex_state = 5}, + [2544] = {.lex_state = 5}, + [2545] = {.lex_state = 5}, + [2546] = {.lex_state = 5}, + [2547] = {.lex_state = 5}, + [2548] = {.lex_state = 5}, + [2549] = {.lex_state = 5}, + [2550] = {.lex_state = 5}, + [2551] = {.lex_state = 5}, + [2552] = {.lex_state = 5}, + [2553] = {.lex_state = 5}, + [2554] = {.lex_state = 5}, + [2555] = {.lex_state = 5}, + [2556] = {.lex_state = 5}, + [2557] = {.lex_state = 5}, + [2558] = {.lex_state = 5}, + [2559] = {.lex_state = 5}, + [2560] = {.lex_state = 5}, + [2561] = {.lex_state = 5}, + [2562] = {.lex_state = 5}, + [2563] = {.lex_state = 5}, + [2564] = {.lex_state = 5}, + [2565] = {.lex_state = 5}, + [2566] = {.lex_state = 5}, + [2567] = {.lex_state = 5}, + [2568] = {.lex_state = 5}, + [2569] = {.lex_state = 5}, + [2570] = {.lex_state = 5}, + [2571] = {.lex_state = 5}, + [2572] = {.lex_state = 5}, + [2573] = {.lex_state = 5}, + [2574] = {.lex_state = 5}, + [2575] = {.lex_state = 5}, + [2576] = {.lex_state = 5}, + [2577] = {.lex_state = 5}, + [2578] = {.lex_state = 5}, + [2579] = {.lex_state = 5}, + [2580] = {.lex_state = 5}, + [2581] = {.lex_state = 5}, + [2582] = {.lex_state = 5}, + [2583] = {.lex_state = 5}, + [2584] = {.lex_state = 5}, + [2585] = {.lex_state = 5}, + [2586] = {.lex_state = 5}, + [2587] = {.lex_state = 5}, + [2588] = {.lex_state = 5}, + [2589] = {.lex_state = 5}, + [2590] = {.lex_state = 5}, + [2591] = {.lex_state = 5}, + [2592] = {.lex_state = 5}, + [2593] = {.lex_state = 5}, + [2594] = {.lex_state = 5}, + [2595] = {.lex_state = 5}, + [2596] = {.lex_state = 5}, + [2597] = {.lex_state = 5}, + [2598] = {.lex_state = 5}, + [2599] = {.lex_state = 5}, + [2600] = {.lex_state = 5}, + [2601] = {.lex_state = 5}, + [2602] = {.lex_state = 5}, + [2603] = {.lex_state = 5}, + [2604] = {.lex_state = 5}, + [2605] = {.lex_state = 5}, + [2606] = {.lex_state = 5}, + [2607] = {.lex_state = 5}, + [2608] = {.lex_state = 5}, + [2609] = {.lex_state = 5}, + [2610] = {.lex_state = 5}, + [2611] = {.lex_state = 5}, + [2612] = {.lex_state = 5}, + [2613] = {.lex_state = 5}, + [2614] = {.lex_state = 5}, + [2615] = {.lex_state = 5}, + [2616] = {.lex_state = 5}, + [2617] = {.lex_state = 5}, + [2618] = {.lex_state = 5}, + [2619] = {.lex_state = 5}, + [2620] = {.lex_state = 5}, + [2621] = {.lex_state = 5}, + [2622] = {.lex_state = 5}, + [2623] = {.lex_state = 5}, + [2624] = {.lex_state = 5}, + [2625] = {.lex_state = 5}, + [2626] = {.lex_state = 5}, + [2627] = {.lex_state = 5}, + [2628] = {.lex_state = 5}, + [2629] = {.lex_state = 5}, + [2630] = {.lex_state = 5}, + [2631] = {.lex_state = 5}, + [2632] = {.lex_state = 5}, + [2633] = {.lex_state = 5}, + [2634] = {.lex_state = 5}, + [2635] = {.lex_state = 5}, + [2636] = {.lex_state = 5}, + [2637] = {.lex_state = 5}, + [2638] = {.lex_state = 5}, + [2639] = {.lex_state = 5}, + [2640] = {.lex_state = 5}, + [2641] = {.lex_state = 5}, + [2642] = {.lex_state = 5}, + [2643] = {.lex_state = 5}, + [2644] = {.lex_state = 5}, + [2645] = {.lex_state = 5}, + [2646] = {.lex_state = 5}, + [2647] = {.lex_state = 5}, + [2648] = {.lex_state = 5}, + [2649] = {.lex_state = 5}, + [2650] = {.lex_state = 5}, + [2651] = {.lex_state = 5}, + [2652] = {.lex_state = 5}, + [2653] = {.lex_state = 5}, + [2654] = {.lex_state = 5}, + [2655] = {.lex_state = 5}, + [2656] = {.lex_state = 5}, + [2657] = {.lex_state = 5}, + [2658] = {.lex_state = 5}, + [2659] = {.lex_state = 5}, + [2660] = {.lex_state = 5}, + [2661] = {.lex_state = 5}, + [2662] = {.lex_state = 5}, + [2663] = {.lex_state = 5}, + [2664] = {.lex_state = 5}, + [2665] = {.lex_state = 5}, + [2666] = {.lex_state = 5}, + [2667] = {.lex_state = 5}, + [2668] = {.lex_state = 5}, + [2669] = {.lex_state = 5}, + [2670] = {.lex_state = 5}, + [2671] = {.lex_state = 5}, + [2672] = {.lex_state = 5}, + [2673] = {.lex_state = 5}, + [2674] = {.lex_state = 5}, + [2675] = {.lex_state = 5}, + [2676] = {.lex_state = 5}, + [2677] = {.lex_state = 5}, + [2678] = {.lex_state = 5}, + [2679] = {.lex_state = 5}, + [2680] = {.lex_state = 5}, + [2681] = {.lex_state = 5}, + [2682] = {.lex_state = 5}, + [2683] = {.lex_state = 5}, + [2684] = {.lex_state = 5}, + [2685] = {.lex_state = 5}, + [2686] = {.lex_state = 5}, + [2687] = {.lex_state = 5}, + [2688] = {.lex_state = 5}, + [2689] = {.lex_state = 5}, + [2690] = {.lex_state = 5}, + [2691] = {.lex_state = 5}, + [2692] = {.lex_state = 5}, + [2693] = {.lex_state = 5}, + [2694] = {.lex_state = 5}, + [2695] = {.lex_state = 5}, + [2696] = {.lex_state = 5}, + [2697] = {.lex_state = 5}, + [2698] = {.lex_state = 5}, + [2699] = {.lex_state = 5}, + [2700] = {.lex_state = 5}, + [2701] = {.lex_state = 5}, + [2702] = {.lex_state = 5}, + [2703] = {.lex_state = 5}, + [2704] = {.lex_state = 5}, + [2705] = {.lex_state = 5}, + [2706] = {.lex_state = 5}, + [2707] = {.lex_state = 5}, + [2708] = {.lex_state = 5}, + [2709] = {.lex_state = 5}, + [2710] = {.lex_state = 5}, + [2711] = {.lex_state = 5}, + [2712] = {.lex_state = 5}, + [2713] = {.lex_state = 5}, + [2714] = {.lex_state = 5}, + [2715] = {.lex_state = 5}, + [2716] = {.lex_state = 5}, + [2717] = {.lex_state = 5}, + [2718] = {.lex_state = 5}, + [2719] = {.lex_state = 5}, + [2720] = {.lex_state = 5}, + [2721] = {.lex_state = 5}, + [2722] = {.lex_state = 5}, + [2723] = {.lex_state = 5}, + [2724] = {.lex_state = 5}, + [2725] = {.lex_state = 5}, + [2726] = {.lex_state = 5}, + [2727] = {.lex_state = 5}, + [2728] = {.lex_state = 5}, + [2729] = {.lex_state = 5}, + [2730] = {.lex_state = 5}, + [2731] = {.lex_state = 5}, + [2732] = {.lex_state = 5}, + [2733] = {.lex_state = 5}, + [2734] = {.lex_state = 5}, + [2735] = {.lex_state = 5}, + [2736] = {.lex_state = 5}, + [2737] = {.lex_state = 5}, + [2738] = {.lex_state = 5}, + [2739] = {.lex_state = 5}, + [2740] = {.lex_state = 5}, + [2741] = {.lex_state = 5}, + [2742] = {.lex_state = 5}, + [2743] = {.lex_state = 5}, + [2744] = {.lex_state = 5}, + [2745] = {.lex_state = 5}, + [2746] = {.lex_state = 5}, + [2747] = {.lex_state = 5}, + [2748] = {.lex_state = 5}, + [2749] = {.lex_state = 5}, + [2750] = {.lex_state = 5}, + [2751] = {.lex_state = 5}, + [2752] = {.lex_state = 5}, + [2753] = {.lex_state = 5}, + [2754] = {.lex_state = 5}, + [2755] = {.lex_state = 5}, + [2756] = {.lex_state = 5}, + [2757] = {.lex_state = 5}, + [2758] = {.lex_state = 5}, + [2759] = {.lex_state = 5}, + [2760] = {.lex_state = 5}, + [2761] = {.lex_state = 5}, + [2762] = {.lex_state = 69}, + [2763] = {.lex_state = 5}, + [2764] = {.lex_state = 5}, + [2765] = {.lex_state = 5}, + [2766] = {.lex_state = 5}, + [2767] = {.lex_state = 5}, + [2768] = {.lex_state = 5}, + [2769] = {.lex_state = 5}, + [2770] = {.lex_state = 5}, + [2771] = {.lex_state = 5}, + [2772] = {.lex_state = 69}, + [2773] = {.lex_state = 5}, + [2774] = {.lex_state = 5}, + [2775] = {.lex_state = 5}, + [2776] = {.lex_state = 5}, + [2777] = {.lex_state = 5}, + [2778] = {.lex_state = 5}, + [2779] = {.lex_state = 5}, + [2780] = {.lex_state = 5}, + [2781] = {.lex_state = 5}, + [2782] = {.lex_state = 5}, + [2783] = {.lex_state = 5}, + [2784] = {.lex_state = 5}, + [2785] = {.lex_state = 5}, + [2786] = {.lex_state = 5}, + [2787] = {.lex_state = 5}, + [2788] = {.lex_state = 5}, + [2789] = {.lex_state = 5}, + [2790] = {.lex_state = 5}, + [2791] = {.lex_state = 5}, + [2792] = {.lex_state = 5}, + [2793] = {.lex_state = 5}, + [2794] = {.lex_state = 5}, + [2795] = {.lex_state = 5}, + [2796] = {.lex_state = 5}, + [2797] = {.lex_state = 5}, + [2798] = {.lex_state = 5}, + [2799] = {.lex_state = 5}, + [2800] = {.lex_state = 5}, + [2801] = {.lex_state = 5}, + [2802] = {.lex_state = 5}, + [2803] = {.lex_state = 5}, + [2804] = {.lex_state = 5}, + [2805] = {.lex_state = 5}, + [2806] = {.lex_state = 5}, + [2807] = {.lex_state = 5}, + [2808] = {.lex_state = 5}, + [2809] = {.lex_state = 5}, + [2810] = {.lex_state = 5}, + [2811] = {.lex_state = 5}, + [2812] = {.lex_state = 5}, + [2813] = {.lex_state = 5}, + [2814] = {.lex_state = 5}, + [2815] = {.lex_state = 5}, + [2816] = {.lex_state = 5}, + [2817] = {.lex_state = 5}, + [2818] = {.lex_state = 5}, + [2819] = {.lex_state = 5}, + [2820] = {.lex_state = 5}, + [2821] = {.lex_state = 5}, + [2822] = {.lex_state = 5}, + [2823] = {.lex_state = 5}, + [2824] = {.lex_state = 5}, + [2825] = {.lex_state = 5}, + [2826] = {.lex_state = 5}, + [2827] = {.lex_state = 5}, + [2828] = {.lex_state = 5}, + [2829] = {.lex_state = 5}, + [2830] = {.lex_state = 5}, + [2831] = {.lex_state = 5}, + [2832] = {.lex_state = 5}, + [2833] = {.lex_state = 5}, + [2834] = {.lex_state = 5}, + [2835] = {.lex_state = 5}, + [2836] = {.lex_state = 5}, + [2837] = {.lex_state = 5}, + [2838] = {.lex_state = 5}, + [2839] = {.lex_state = 5}, + [2840] = {.lex_state = 5}, + [2841] = {.lex_state = 5}, + [2842] = {.lex_state = 5}, + [2843] = {.lex_state = 5}, + [2844] = {.lex_state = 5}, + [2845] = {.lex_state = 5}, + [2846] = {.lex_state = 5}, + [2847] = {.lex_state = 5}, + [2848] = {.lex_state = 5}, + [2849] = {.lex_state = 5}, + [2850] = {.lex_state = 5}, + [2851] = {.lex_state = 5}, + [2852] = {.lex_state = 5}, + [2853] = {.lex_state = 5}, + [2854] = {.lex_state = 5}, + [2855] = {.lex_state = 5}, + [2856] = {.lex_state = 5}, + [2857] = {.lex_state = 5}, + [2858] = {.lex_state = 5}, + [2859] = {.lex_state = 5}, + [2860] = {.lex_state = 5}, + [2861] = {.lex_state = 5}, + [2862] = {.lex_state = 5}, + [2863] = {.lex_state = 5}, + [2864] = {.lex_state = 5}, + [2865] = {.lex_state = 5}, + [2866] = {.lex_state = 5}, + [2867] = {.lex_state = 5}, + [2868] = {.lex_state = 5}, + [2869] = {.lex_state = 5}, + [2870] = {.lex_state = 5}, + [2871] = {.lex_state = 5}, + [2872] = {.lex_state = 5}, + [2873] = {.lex_state = 5}, + [2874] = {.lex_state = 5}, + [2875] = {.lex_state = 5}, + [2876] = {.lex_state = 5}, + [2877] = {.lex_state = 5}, + [2878] = {.lex_state = 5}, + [2879] = {.lex_state = 5}, + [2880] = {.lex_state = 5}, + [2881] = {.lex_state = 5}, + [2882] = {.lex_state = 5}, + [2883] = {.lex_state = 5}, + [2884] = {.lex_state = 5}, + [2885] = {.lex_state = 5}, + [2886] = {.lex_state = 5}, + [2887] = {.lex_state = 5}, + [2888] = {.lex_state = 5}, + [2889] = {.lex_state = 5}, + [2890] = {.lex_state = 5}, + [2891] = {.lex_state = 5}, + [2892] = {.lex_state = 5}, + [2893] = {.lex_state = 5}, + [2894] = {.lex_state = 5}, + [2895] = {.lex_state = 5}, + [2896] = {.lex_state = 5}, + [2897] = {.lex_state = 5}, + [2898] = {.lex_state = 5}, + [2899] = {.lex_state = 5}, + [2900] = {.lex_state = 5}, + [2901] = {.lex_state = 5}, + [2902] = {.lex_state = 5}, + [2903] = {.lex_state = 5}, + [2904] = {.lex_state = 5}, + [2905] = {.lex_state = 5}, + [2906] = {.lex_state = 5}, + [2907] = {.lex_state = 5}, + [2908] = {.lex_state = 5}, + [2909] = {.lex_state = 5}, + [2910] = {.lex_state = 5}, + [2911] = {.lex_state = 5}, + [2912] = {.lex_state = 5}, + [2913] = {.lex_state = 5}, + [2914] = {.lex_state = 5}, + [2915] = {.lex_state = 5}, + [2916] = {.lex_state = 5}, + [2917] = {.lex_state = 5}, + [2918] = {.lex_state = 5}, + [2919] = {.lex_state = 5}, + [2920] = {.lex_state = 5}, + [2921] = {.lex_state = 5}, + [2922] = {.lex_state = 5}, + [2923] = {.lex_state = 5}, + [2924] = {.lex_state = 5}, + [2925] = {.lex_state = 5}, + [2926] = {.lex_state = 5}, + [2927] = {.lex_state = 5}, + [2928] = {.lex_state = 5}, + [2929] = {.lex_state = 5}, + [2930] = {.lex_state = 5}, + [2931] = {.lex_state = 5}, + [2932] = {.lex_state = 5}, + [2933] = {.lex_state = 5}, + [2934] = {.lex_state = 5}, + [2935] = {.lex_state = 5}, + [2936] = {.lex_state = 5}, + [2937] = {.lex_state = 5}, + [2938] = {.lex_state = 5}, + [2939] = {.lex_state = 5}, + [2940] = {.lex_state = 5}, + [2941] = {.lex_state = 5}, + [2942] = {.lex_state = 5}, + [2943] = {.lex_state = 5}, + [2944] = {.lex_state = 5}, + [2945] = {.lex_state = 5}, + [2946] = {.lex_state = 5}, + [2947] = {.lex_state = 5}, + [2948] = {.lex_state = 5}, + [2949] = {.lex_state = 5}, + [2950] = {.lex_state = 5}, + [2951] = {.lex_state = 5}, + [2952] = {.lex_state = 33}, + [2953] = {.lex_state = 5}, + [2954] = {.lex_state = 5}, + [2955] = {.lex_state = 5}, + [2956] = {.lex_state = 5}, + [2957] = {.lex_state = 5}, + [2958] = {.lex_state = 5}, + [2959] = {.lex_state = 5}, + [2960] = {.lex_state = 5}, + [2961] = {.lex_state = 5}, + [2962] = {.lex_state = 5}, + [2963] = {.lex_state = 5}, + [2964] = {.lex_state = 5}, + [2965] = {.lex_state = 5}, + [2966] = {.lex_state = 5}, + [2967] = {.lex_state = 5}, + [2968] = {.lex_state = 5}, + [2969] = {.lex_state = 5}, + [2970] = {.lex_state = 5}, + [2971] = {.lex_state = 5}, + [2972] = {.lex_state = 5}, + [2973] = {.lex_state = 5}, + [2974] = {.lex_state = 5}, + [2975] = {.lex_state = 5}, + [2976] = {.lex_state = 5}, + [2977] = {.lex_state = 5}, + [2978] = {.lex_state = 5}, + [2979] = {.lex_state = 5}, + [2980] = {.lex_state = 5}, + [2981] = {.lex_state = 5}, + [2982] = {.lex_state = 5}, + [2983] = {.lex_state = 5}, + [2984] = {.lex_state = 5}, + [2985] = {.lex_state = 5}, + [2986] = {.lex_state = 5}, + [2987] = {.lex_state = 5}, + [2988] = {.lex_state = 5}, + [2989] = {.lex_state = 5}, + [2990] = {.lex_state = 5}, + [2991] = {.lex_state = 5}, + [2992] = {.lex_state = 5}, + [2993] = {.lex_state = 5}, + [2994] = {.lex_state = 5}, + [2995] = {.lex_state = 5}, + [2996] = {.lex_state = 5}, + [2997] = {.lex_state = 5}, + [2998] = {.lex_state = 5}, + [2999] = {.lex_state = 5}, + [3000] = {.lex_state = 5}, + [3001] = {.lex_state = 5}, + [3002] = {.lex_state = 5}, + [3003] = {.lex_state = 5}, + [3004] = {.lex_state = 5}, + [3005] = {.lex_state = 5}, + [3006] = {.lex_state = 5}, + [3007] = {.lex_state = 5}, + [3008] = {.lex_state = 5}, + [3009] = {.lex_state = 5}, + [3010] = {.lex_state = 5}, + [3011] = {.lex_state = 69}, + [3012] = {.lex_state = 5}, + [3013] = {.lex_state = 5}, + [3014] = {.lex_state = 5}, + [3015] = {.lex_state = 5}, + [3016] = {.lex_state = 5}, + [3017] = {.lex_state = 5}, + [3018] = {.lex_state = 5}, + [3019] = {.lex_state = 5}, + [3020] = {.lex_state = 5}, + [3021] = {.lex_state = 5}, + [3022] = {.lex_state = 5}, + [3023] = {.lex_state = 5}, + [3024] = {.lex_state = 5}, + [3025] = {.lex_state = 5}, + [3026] = {.lex_state = 5}, + [3027] = {.lex_state = 5}, + [3028] = {.lex_state = 5}, + [3029] = {.lex_state = 5}, + [3030] = {.lex_state = 5}, + [3031] = {.lex_state = 5}, + [3032] = {.lex_state = 5}, + [3033] = {.lex_state = 5}, + [3034] = {.lex_state = 5}, + [3035] = {.lex_state = 5}, + [3036] = {.lex_state = 5}, + [3037] = {.lex_state = 5}, + [3038] = {.lex_state = 5}, + [3039] = {.lex_state = 5}, + [3040] = {.lex_state = 5}, + [3041] = {.lex_state = 5}, + [3042] = {.lex_state = 5}, + [3043] = {.lex_state = 5}, + [3044] = {.lex_state = 5}, + [3045] = {.lex_state = 5}, + [3046] = {.lex_state = 5}, + [3047] = {.lex_state = 5}, + [3048] = {.lex_state = 5}, + [3049] = {.lex_state = 5}, + [3050] = {.lex_state = 5}, + [3051] = {.lex_state = 5}, + [3052] = {.lex_state = 5}, + [3053] = {.lex_state = 5}, + [3054] = {.lex_state = 5}, + [3055] = {.lex_state = 5}, + [3056] = {.lex_state = 5}, + [3057] = {.lex_state = 5}, + [3058] = {.lex_state = 5}, + [3059] = {.lex_state = 5}, + [3060] = {.lex_state = 5}, + [3061] = {.lex_state = 5}, + [3062] = {.lex_state = 5}, + [3063] = {.lex_state = 5}, + [3064] = {.lex_state = 5}, + [3065] = {.lex_state = 5}, + [3066] = {.lex_state = 5}, + [3067] = {.lex_state = 5}, + [3068] = {.lex_state = 5}, + [3069] = {.lex_state = 5}, + [3070] = {.lex_state = 5}, + [3071] = {.lex_state = 5}, + [3072] = {.lex_state = 5}, + [3073] = {.lex_state = 5}, + [3074] = {.lex_state = 5}, + [3075] = {.lex_state = 5}, + [3076] = {.lex_state = 5}, + [3077] = {.lex_state = 5}, + [3078] = {.lex_state = 5}, + [3079] = {.lex_state = 5}, + [3080] = {.lex_state = 5}, + [3081] = {.lex_state = 5}, + [3082] = {.lex_state = 5}, + [3083] = {.lex_state = 5}, + [3084] = {.lex_state = 5}, + [3085] = {.lex_state = 5}, + [3086] = {.lex_state = 5}, + [3087] = {.lex_state = 5}, + [3088] = {.lex_state = 5}, + [3089] = {.lex_state = 5}, + [3090] = {.lex_state = 5}, + [3091] = {.lex_state = 5}, + [3092] = {.lex_state = 5}, + [3093] = {.lex_state = 5}, + [3094] = {.lex_state = 5}, + [3095] = {.lex_state = 5}, + [3096] = {.lex_state = 5}, + [3097] = {.lex_state = 5}, + [3098] = {.lex_state = 5}, + [3099] = {.lex_state = 5}, + [3100] = {.lex_state = 5}, + [3101] = {.lex_state = 5}, + [3102] = {.lex_state = 5}, + [3103] = {.lex_state = 5}, + [3104] = {.lex_state = 69}, + [3105] = {.lex_state = 5}, + [3106] = {.lex_state = 5}, + [3107] = {.lex_state = 5}, + [3108] = {.lex_state = 5}, + [3109] = {.lex_state = 5}, + [3110] = {.lex_state = 5}, + [3111] = {.lex_state = 5}, + [3112] = {.lex_state = 5}, + [3113] = {.lex_state = 5}, + [3114] = {.lex_state = 5}, + [3115] = {.lex_state = 5}, + [3116] = {.lex_state = 5}, + [3117] = {.lex_state = 5}, + [3118] = {.lex_state = 5}, + [3119] = {.lex_state = 5}, + [3120] = {.lex_state = 5}, + [3121] = {.lex_state = 5}, + [3122] = {.lex_state = 5}, + [3123] = {.lex_state = 5}, + [3124] = {.lex_state = 5}, + [3125] = {.lex_state = 5}, + [3126] = {.lex_state = 5}, + [3127] = {.lex_state = 5}, + [3128] = {.lex_state = 5}, + [3129] = {.lex_state = 5}, + [3130] = {.lex_state = 5}, + [3131] = {.lex_state = 5}, + [3132] = {.lex_state = 5}, + [3133] = {.lex_state = 5}, + [3134] = {.lex_state = 5}, + [3135] = {.lex_state = 5}, + [3136] = {.lex_state = 5}, + [3137] = {.lex_state = 5}, + [3138] = {.lex_state = 34}, + [3139] = {.lex_state = 5}, + [3140] = {.lex_state = 5}, + [3141] = {.lex_state = 5}, + [3142] = {.lex_state = 5}, + [3143] = {.lex_state = 5}, + [3144] = {.lex_state = 5}, + [3145] = {.lex_state = 5}, + [3146] = {.lex_state = 5}, + [3147] = {.lex_state = 5}, + [3148] = {.lex_state = 5}, + [3149] = {.lex_state = 5}, + [3150] = {.lex_state = 5}, + [3151] = {.lex_state = 5}, + [3152] = {.lex_state = 5}, + [3153] = {.lex_state = 5}, + [3154] = {.lex_state = 5}, + [3155] = {.lex_state = 5}, + [3156] = {.lex_state = 5}, + [3157] = {.lex_state = 5}, + [3158] = {.lex_state = 5}, + [3159] = {.lex_state = 5}, + [3160] = {.lex_state = 5}, + [3161] = {.lex_state = 5}, + [3162] = {.lex_state = 5}, + [3163] = {.lex_state = 5}, + [3164] = {.lex_state = 5}, + [3165] = {.lex_state = 5}, + [3166] = {.lex_state = 5}, + [3167] = {.lex_state = 5}, + [3168] = {.lex_state = 5}, + [3169] = {.lex_state = 5}, + [3170] = {.lex_state = 33}, + [3171] = {.lex_state = 5}, + [3172] = {.lex_state = 5}, + [3173] = {.lex_state = 33}, + [3174] = {.lex_state = 5}, + [3175] = {.lex_state = 34}, + [3176] = {.lex_state = 5}, + [3177] = {.lex_state = 34}, + [3178] = {.lex_state = 5}, + [3179] = {.lex_state = 5}, + [3180] = {.lex_state = 5}, + [3181] = {.lex_state = 5}, + [3182] = {.lex_state = 5}, + [3183] = {.lex_state = 5}, + [3184] = {.lex_state = 5}, + [3185] = {.lex_state = 5}, + [3186] = {.lex_state = 5}, + [3187] = {.lex_state = 33}, + [3188] = {.lex_state = 33}, + [3189] = {.lex_state = 5}, + [3190] = {.lex_state = 5}, + [3191] = {.lex_state = 5}, + [3192] = {.lex_state = 5}, + [3193] = {.lex_state = 5}, + [3194] = {.lex_state = 5}, + [3195] = {.lex_state = 5}, + [3196] = {.lex_state = 5}, + [3197] = {.lex_state = 5}, + [3198] = {.lex_state = 5}, + [3199] = {.lex_state = 5}, + [3200] = {.lex_state = 5}, + [3201] = {.lex_state = 5}, + [3202] = {.lex_state = 5}, + [3203] = {.lex_state = 34}, + [3204] = {.lex_state = 5}, + [3205] = {.lex_state = 5}, + [3206] = {.lex_state = 5}, + [3207] = {.lex_state = 34}, + [3208] = {.lex_state = 5}, + [3209] = {.lex_state = 5}, + [3210] = {.lex_state = 5}, + [3211] = {.lex_state = 5}, + [3212] = {.lex_state = 5}, + [3213] = {.lex_state = 5}, + [3214] = {.lex_state = 5}, + [3215] = {.lex_state = 5}, + [3216] = {.lex_state = 5}, + [3217] = {.lex_state = 5}, + [3218] = {.lex_state = 5}, + [3219] = {.lex_state = 5}, + [3220] = {.lex_state = 5}, + [3221] = {.lex_state = 5}, + [3222] = {.lex_state = 5}, + [3223] = {.lex_state = 5}, + [3224] = {.lex_state = 5}, + [3225] = {.lex_state = 5}, + [3226] = {.lex_state = 5}, + [3227] = {.lex_state = 5}, + [3228] = {.lex_state = 5}, + [3229] = {.lex_state = 5}, + [3230] = {.lex_state = 5}, + [3231] = {.lex_state = 5}, + [3232] = {.lex_state = 5}, + [3233] = {.lex_state = 5}, + [3234] = {.lex_state = 5}, + [3235] = {.lex_state = 5}, + [3236] = {.lex_state = 5}, + [3237] = {.lex_state = 5}, + [3238] = {.lex_state = 5}, + [3239] = {.lex_state = 5}, + [3240] = {.lex_state = 5}, + [3241] = {.lex_state = 5}, + [3242] = {.lex_state = 5}, + [3243] = {.lex_state = 5}, + [3244] = {.lex_state = 5}, + [3245] = {.lex_state = 5}, + [3246] = {.lex_state = 5}, + [3247] = {.lex_state = 5}, + [3248] = {.lex_state = 5}, + [3249] = {.lex_state = 5}, + [3250] = {.lex_state = 5}, + [3251] = {.lex_state = 5}, + [3252] = {.lex_state = 5}, + [3253] = {.lex_state = 5}, + [3254] = {.lex_state = 5}, + [3255] = {.lex_state = 5}, + [3256] = {.lex_state = 5}, + [3257] = {.lex_state = 54}, + [3258] = {.lex_state = 66}, + [3259] = {.lex_state = 63}, + [3260] = {.lex_state = 60}, + [3261] = {.lex_state = 68}, + [3262] = {.lex_state = 57}, + [3263] = {.lex_state = 46}, + [3264] = {.lex_state = 67}, + [3265] = {.lex_state = 62}, + [3266] = {.lex_state = 62}, + [3267] = {.lex_state = 64}, + [3268] = {.lex_state = 65}, + [3269] = {.lex_state = 51}, + [3270] = {.lex_state = 55}, + [3271] = {.lex_state = 59}, + [3272] = {.lex_state = 54}, + [3273] = {.lex_state = 53}, + [3274] = {.lex_state = 48}, + [3275] = {.lex_state = 45}, + [3276] = {.lex_state = 49}, + [3277] = {.lex_state = 46}, + [3278] = {.lex_state = 47}, + [3279] = {.lex_state = 50}, + [3280] = {.lex_state = 47}, + [3281] = {.lex_state = 50}, + [3282] = {.lex_state = 51}, + [3283] = {.lex_state = 58}, + [3284] = {.lex_state = 52}, + [3285] = {.lex_state = 56}, + [3286] = {.lex_state = 62}, + [3287] = {.lex_state = 53}, + [3288] = {.lex_state = 58}, + [3289] = {.lex_state = 52}, + [3290] = {.lex_state = 56}, + [3291] = {.lex_state = 62}, + [3292] = {.lex_state = 66}, + [3293] = {.lex_state = 63}, + [3294] = {.lex_state = 60}, + [3295] = {.lex_state = 68}, + [3296] = {.lex_state = 57}, + [3297] = {.lex_state = 62}, + [3298] = {.lex_state = 49}, + [3299] = {.lex_state = 45}, + [3300] = {.lex_state = 48}, + [3301] = {.lex_state = 53}, + [3302] = {.lex_state = 54}, + [3303] = {.lex_state = 59}, + [3304] = {.lex_state = 55}, + [3305] = {.lex_state = 65}, + [3306] = {.lex_state = 64}, + [3307] = {.lex_state = 62}, + [3308] = {.lex_state = 62}, + [3309] = {.lex_state = 67}, + [3310] = {.lex_state = 62}, + [3311] = {.lex_state = 57}, + [3312] = {.lex_state = 68}, + [3313] = {.lex_state = 60}, + [3314] = {.lex_state = 63}, + [3315] = {.lex_state = 66}, + [3316] = {.lex_state = 62}, + [3317] = {.lex_state = 56}, + [3318] = {.lex_state = 52}, + [3319] = {.lex_state = 58}, + [3320] = {.lex_state = 51}, + [3321] = {.lex_state = 50}, + [3322] = {.lex_state = 64}, + [3323] = {.lex_state = 65}, + [3324] = {.lex_state = 47}, + [3325] = {.lex_state = 46}, + [3326] = {.lex_state = 55}, + [3327] = {.lex_state = 59}, + [3328] = {.lex_state = 54}, + [3329] = {.lex_state = 53}, + [3330] = {.lex_state = 48}, + [3331] = {.lex_state = 45}, + [3332] = {.lex_state = 49}, + [3333] = {.lex_state = 49}, + [3334] = {.lex_state = 45}, + [3335] = {.lex_state = 48}, + [3336] = {.lex_state = 68}, + [3337] = {.lex_state = 54}, + [3338] = {.lex_state = 59}, + [3339] = {.lex_state = 55}, + [3340] = {.lex_state = 65}, + [3341] = {.lex_state = 64}, + [3342] = {.lex_state = 62}, + [3343] = {.lex_state = 62}, + [3344] = {.lex_state = 67}, + [3345] = {.lex_state = 57}, + [3346] = {.lex_state = 56}, + [3347] = {.lex_state = 60}, + [3348] = {.lex_state = 63}, + [3349] = {.lex_state = 66}, + [3350] = {.lex_state = 62}, + [3351] = {.lex_state = 56}, + [3352] = {.lex_state = 52}, + [3353] = {.lex_state = 58}, + [3354] = {.lex_state = 51}, + [3355] = {.lex_state = 50}, + [3356] = {.lex_state = 47}, + [3357] = {.lex_state = 46}, + [3358] = {.lex_state = 46}, + [3359] = {.lex_state = 47}, + [3360] = {.lex_state = 50}, + [3361] = {.lex_state = 51}, + [3362] = {.lex_state = 58}, + [3363] = {.lex_state = 52}, + [3364] = {.lex_state = 56}, + [3365] = {.lex_state = 62}, + [3366] = {.lex_state = 66}, + [3367] = {.lex_state = 63}, + [3368] = {.lex_state = 60}, + [3369] = {.lex_state = 68}, + [3370] = {.lex_state = 49}, + [3371] = {.lex_state = 45}, + [3372] = {.lex_state = 48}, + [3373] = {.lex_state = 53}, + [3374] = {.lex_state = 54}, + [3375] = {.lex_state = 59}, + [3376] = {.lex_state = 55}, + [3377] = {.lex_state = 65}, + [3378] = {.lex_state = 64}, + [3379] = {.lex_state = 62}, + [3380] = {.lex_state = 62}, + [3381] = {.lex_state = 67}, + [3382] = {.lex_state = 57}, + [3383] = {.lex_state = 57}, + [3384] = {.lex_state = 68}, + [3385] = {.lex_state = 60}, + [3386] = {.lex_state = 63}, + [3387] = {.lex_state = 66}, + [3388] = {.lex_state = 62}, + [3389] = {.lex_state = 56}, + [3390] = {.lex_state = 52}, + [3391] = {.lex_state = 58}, + [3392] = {.lex_state = 51}, + [3393] = {.lex_state = 50}, + [3394] = {.lex_state = 67}, + [3395] = {.lex_state = 62}, + [3396] = {.lex_state = 47}, + [3397] = {.lex_state = 46}, + [3398] = {.lex_state = 62}, + [3399] = {.lex_state = 64}, + [3400] = {.lex_state = 67}, + [3401] = {.lex_state = 55}, + [3402] = {.lex_state = 59}, + [3403] = {.lex_state = 54}, + [3404] = {.lex_state = 53}, + [3405] = {.lex_state = 48}, + [3406] = {.lex_state = 45}, + [3407] = {.lex_state = 49}, + [3408] = {.lex_state = 49}, + [3409] = {.lex_state = 45}, + [3410] = {.lex_state = 48}, + [3411] = {.lex_state = 53}, + [3412] = {.lex_state = 54}, + [3413] = {.lex_state = 59}, + [3414] = {.lex_state = 55}, + [3415] = {.lex_state = 65}, + [3416] = {.lex_state = 64}, + [3417] = {.lex_state = 62}, + [3418] = {.lex_state = 62}, + [3419] = {.lex_state = 67}, + [3420] = {.lex_state = 57}, + [3421] = {.lex_state = 68}, + [3422] = {.lex_state = 60}, + [3423] = {.lex_state = 63}, [3424] = {.lex_state = 0}, - [3425] = {.lex_state = 64}, - [3426] = {.lex_state = 60}, - [3427] = {.lex_state = 54}, - [3428] = {.lex_state = 50}, - [3429] = {.lex_state = 56}, - [3430] = {.lex_state = 49}, - [3431] = {.lex_state = 48}, - [3432] = {.lex_state = 63}, - [3433] = {.lex_state = 45}, - [3434] = {.lex_state = 44}, - [3435] = {.lex_state = 44}, - [3436] = {.lex_state = 45}, - [3437] = {.lex_state = 48}, - [3438] = {.lex_state = 49}, - [3439] = {.lex_state = 56}, - [3440] = {.lex_state = 50}, - [3441] = {.lex_state = 60}, - [3442] = {.lex_state = 60}, - [3443] = {.lex_state = 64}, - [3444] = {.lex_state = 61}, - [3445] = {.lex_state = 58}, - [3446] = {.lex_state = 47}, - [3447] = {.lex_state = 43}, - [3448] = {.lex_state = 46}, - [3449] = {.lex_state = 51}, - [3450] = {.lex_state = 52}, - [3451] = {.lex_state = 57}, - [3452] = {.lex_state = 53}, - [3453] = {.lex_state = 63}, - [3454] = {.lex_state = 62}, - [3455] = {.lex_state = 60}, - [3456] = {.lex_state = 60}, - [3457] = {.lex_state = 65}, - [3458] = {.lex_state = 66}, - [3459] = {.lex_state = 55}, - [3460] = {.lex_state = 66}, - [3461] = {.lex_state = 58}, - [3462] = {.lex_state = 61}, - [3463] = {.lex_state = 64}, - [3464] = {.lex_state = 60}, - [3465] = {.lex_state = 54}, - [3466] = {.lex_state = 50}, - [3467] = {.lex_state = 56}, - [3468] = {.lex_state = 49}, - [3469] = {.lex_state = 48}, - [3470] = {.lex_state = 55}, - [3471] = {.lex_state = 65}, - [3472] = {.lex_state = 45}, - [3473] = {.lex_state = 44}, - [3474] = {.lex_state = 60}, - [3475] = {.lex_state = 60}, - [3476] = {.lex_state = 60}, - [3477] = {.lex_state = 62}, - [3478] = {.lex_state = 63}, - [3479] = {.lex_state = 53}, - [3480] = {.lex_state = 57}, - [3481] = {.lex_state = 52}, - [3482] = {.lex_state = 51}, - [3483] = {.lex_state = 46}, - [3484] = {.lex_state = 43}, - [3485] = {.lex_state = 47}, - [3486] = {.lex_state = 47}, - [3487] = {.lex_state = 43}, - [3488] = {.lex_state = 46}, - [3489] = {.lex_state = 51}, - [3490] = {.lex_state = 52}, - [3491] = {.lex_state = 57}, - [3492] = {.lex_state = 53}, - [3493] = {.lex_state = 63}, - [3494] = {.lex_state = 62}, - [3495] = {.lex_state = 60}, - [3496] = {.lex_state = 60}, - [3497] = {.lex_state = 65}, - [3498] = {.lex_state = 55}, - [3499] = {.lex_state = 66}, - [3500] = {.lex_state = 58}, - [3501] = {.lex_state = 61}, - [3502] = {.lex_state = 64}, - [3503] = {.lex_state = 47}, - [3504] = {.lex_state = 60}, - [3505] = {.lex_state = 54}, - [3506] = {.lex_state = 50}, - [3507] = {.lex_state = 56}, - [3508] = {.lex_state = 49}, - [3509] = {.lex_state = 48}, - [3510] = {.lex_state = 45}, - [3511] = {.lex_state = 44}, - [3512] = {.lex_state = 44}, - [3513] = {.lex_state = 45}, - [3514] = {.lex_state = 48}, - [3515] = {.lex_state = 49}, - [3516] = {.lex_state = 56}, - [3517] = {.lex_state = 50}, - [3518] = {.lex_state = 54}, - [3519] = {.lex_state = 60}, - [3520] = {.lex_state = 64}, - [3521] = {.lex_state = 61}, - [3522] = {.lex_state = 58}, - [3523] = {.lex_state = 47}, - [3524] = {.lex_state = 43}, - [3525] = {.lex_state = 46}, - [3526] = {.lex_state = 51}, - [3527] = {.lex_state = 43}, - [3528] = {.lex_state = 46}, - [3529] = {.lex_state = 51}, - [3530] = {.lex_state = 52}, - [3531] = {.lex_state = 57}, - [3532] = {.lex_state = 53}, - [3533] = {.lex_state = 63}, - [3534] = {.lex_state = 62}, - [3535] = {.lex_state = 60}, - [3536] = {.lex_state = 60}, - [3537] = {.lex_state = 65}, - [3538] = {.lex_state = 66}, - [3539] = {.lex_state = 55}, - [3540] = {.lex_state = 66}, - [3541] = {.lex_state = 58}, - [3542] = {.lex_state = 61}, - [3543] = {.lex_state = 64}, - [3544] = {.lex_state = 60}, - [3545] = {.lex_state = 54}, - [3546] = {.lex_state = 50}, - [3547] = {.lex_state = 56}, - [3548] = {.lex_state = 49}, - [3549] = {.lex_state = 48}, - [3550] = {.lex_state = 55}, - [3551] = {.lex_state = 65}, - [3552] = {.lex_state = 45}, - [3553] = {.lex_state = 52}, - [3554] = {.lex_state = 57}, - [3555] = {.lex_state = 53}, - [3556] = {.lex_state = 44}, - [3557] = {.lex_state = 54}, - [3558] = {.lex_state = 60}, - [3559] = {.lex_state = 62}, - [3560] = {.lex_state = 63}, - [3561] = {.lex_state = 53}, - [3562] = {.lex_state = 57}, - [3563] = {.lex_state = 52}, - [3564] = {.lex_state = 51}, - [3565] = {.lex_state = 46}, - [3566] = {.lex_state = 43}, - [3567] = {.lex_state = 47}, - [3568] = {.lex_state = 47}, - [3569] = {.lex_state = 43}, - [3570] = {.lex_state = 46}, - [3571] = {.lex_state = 51}, - [3572] = {.lex_state = 52}, - [3573] = {.lex_state = 57}, - [3574] = {.lex_state = 53}, - [3575] = {.lex_state = 63}, - [3576] = {.lex_state = 62}, - [3577] = {.lex_state = 60}, - [3578] = {.lex_state = 60}, - [3579] = {.lex_state = 65}, - [3580] = {.lex_state = 63}, - [3581] = {.lex_state = 62}, - [3582] = {.lex_state = 55}, - [3583] = {.lex_state = 66}, - [3584] = {.lex_state = 58}, - [3585] = {.lex_state = 61}, - [3586] = {.lex_state = 64}, - [3587] = {.lex_state = 60}, - [3588] = {.lex_state = 54}, - [3589] = {.lex_state = 50}, - [3590] = {.lex_state = 56}, - [3591] = {.lex_state = 49}, - [3592] = {.lex_state = 48}, - [3593] = {.lex_state = 45}, - [3594] = {.lex_state = 44}, - [3595] = {.lex_state = 44}, - [3596] = {.lex_state = 45}, - [3597] = {.lex_state = 48}, - [3598] = {.lex_state = 49}, - [3599] = {.lex_state = 56}, - [3600] = {.lex_state = 50}, - [3601] = {.lex_state = 60}, - [3602] = {.lex_state = 60}, - [3603] = {.lex_state = 64}, - [3604] = {.lex_state = 47}, - [3605] = {.lex_state = 44}, - [3606] = {.lex_state = 60}, - [3607] = {.lex_state = 65}, - [3608] = {.lex_state = 43}, - [3609] = {.lex_state = 46}, - [3610] = {.lex_state = 51}, - [3611] = {.lex_state = 52}, - [3612] = {.lex_state = 57}, - [3613] = {.lex_state = 53}, - [3614] = {.lex_state = 63}, - [3615] = {.lex_state = 62}, - [3616] = {.lex_state = 60}, - [3617] = {.lex_state = 60}, - [3618] = {.lex_state = 65}, - [3619] = {.lex_state = 58}, - [3620] = {.lex_state = 55}, - [3621] = {.lex_state = 66}, - [3622] = {.lex_state = 58}, - [3623] = {.lex_state = 61}, - [3624] = {.lex_state = 64}, - [3625] = {.lex_state = 60}, - [3626] = {.lex_state = 54}, - [3627] = {.lex_state = 50}, - [3628] = {.lex_state = 56}, - [3629] = {.lex_state = 49}, - [3630] = {.lex_state = 48}, - [3631] = {.lex_state = 55}, - [3632] = {.lex_state = 66}, - [3633] = {.lex_state = 58}, - [3634] = {.lex_state = 66}, - [3635] = {.lex_state = 55}, - [3636] = {.lex_state = 45}, - [3637] = {.lex_state = 44}, - [3638] = {.lex_state = 65}, - [3639] = {.lex_state = 60}, - [3640] = {.lex_state = 60}, - [3641] = {.lex_state = 62}, - [3642] = {.lex_state = 63}, - [3643] = {.lex_state = 61}, - [3644] = {.lex_state = 57}, - [3645] = {.lex_state = 52}, - [3646] = {.lex_state = 51}, - [3647] = {.lex_state = 46}, - [3648] = {.lex_state = 43}, - [3649] = {.lex_state = 47}, - [3650] = {.lex_state = 43}, - [3651] = {.lex_state = 46}, - [3652] = {.lex_state = 51}, - [3653] = {.lex_state = 64}, - [3654] = {.lex_state = 57}, - [3655] = {.lex_state = 53}, - [3656] = {.lex_state = 63}, - [3657] = {.lex_state = 61}, - [3658] = {.lex_state = 64}, - [3659] = {.lex_state = 60}, - [3660] = {.lex_state = 62}, - [3661] = {.lex_state = 60}, - [3662] = {.lex_state = 60}, - [3663] = {.lex_state = 65}, - [3664] = {.lex_state = 47}, - [3665] = {.lex_state = 55}, - [3666] = {.lex_state = 66}, - [3667] = {.lex_state = 58}, - [3668] = {.lex_state = 61}, - [3669] = {.lex_state = 64}, - [3670] = {.lex_state = 52}, - [3671] = {.lex_state = 54}, - [3672] = {.lex_state = 50}, - [3673] = {.lex_state = 56}, - [3674] = {.lex_state = 49}, - [3675] = {.lex_state = 48}, - [3676] = {.lex_state = 45}, - [3677] = {.lex_state = 44}, - [3678] = {.lex_state = 44}, - [3679] = {.lex_state = 45}, - [3680] = {.lex_state = 48}, - [3681] = {.lex_state = 49}, - [3682] = {.lex_state = 56}, - [3683] = {.lex_state = 54}, - [3684] = {.lex_state = 50}, - [3685] = {.lex_state = 56}, - [3686] = {.lex_state = 50}, - [3687] = {.lex_state = 54}, - [3688] = {.lex_state = 60}, - [3689] = {.lex_state = 64}, - [3690] = {.lex_state = 47}, - [3691] = {.lex_state = 43}, - [3692] = {.lex_state = 46}, - [3693] = {.lex_state = 51}, - [3694] = {.lex_state = 52}, - [3695] = {.lex_state = 57}, - [3696] = {.lex_state = 53}, - [3697] = {.lex_state = 63}, - [3698] = {.lex_state = 62}, - [3699] = {.lex_state = 60}, - [3700] = {.lex_state = 60}, - [3701] = {.lex_state = 65}, - [3702] = {.lex_state = 61}, - [3703] = {.lex_state = 55}, - [3704] = {.lex_state = 66}, - [3705] = {.lex_state = 58}, - [3706] = {.lex_state = 61}, - [3707] = {.lex_state = 64}, - [3708] = {.lex_state = 60}, - [3709] = {.lex_state = 49}, - [3710] = {.lex_state = 48}, - [3711] = {.lex_state = 45}, - [3712] = {.lex_state = 54}, - [3713] = {.lex_state = 50}, - [3714] = {.lex_state = 56}, - [3715] = {.lex_state = 49}, - [3716] = {.lex_state = 48}, - [3717] = {.lex_state = 58}, - [3718] = {.lex_state = 66}, - [3719] = {.lex_state = 45}, - [3720] = {.lex_state = 44}, - [3721] = {.lex_state = 55}, - [3722] = {.lex_state = 65}, - [3723] = {.lex_state = 60}, - [3724] = {.lex_state = 60}, - [3725] = {.lex_state = 62}, - [3726] = {.lex_state = 63}, - [3727] = {.lex_state = 53}, - [3728] = {.lex_state = 57}, - [3729] = {.lex_state = 62}, - [3730] = {.lex_state = 51}, - [3731] = {.lex_state = 53}, - [3732] = {.lex_state = 47}, - [3733] = {.lex_state = 43}, - [3734] = {.lex_state = 46}, - [3735] = {.lex_state = 51}, - [3736] = {.lex_state = 52}, - [3737] = {.lex_state = 57}, - [3738] = {.lex_state = 53}, - [3739] = {.lex_state = 63}, - [3740] = {.lex_state = 62}, - [3741] = {.lex_state = 60}, - [3742] = {.lex_state = 60}, - [3743] = {.lex_state = 65}, - [3744] = {.lex_state = 43}, - [3745] = {.lex_state = 55}, - [3746] = {.lex_state = 66}, - [3747] = {.lex_state = 58}, - [3748] = {.lex_state = 61}, - [3749] = {.lex_state = 64}, - [3750] = {.lex_state = 60}, - [3751] = {.lex_state = 54}, - [3752] = {.lex_state = 50}, - [3753] = {.lex_state = 56}, - [3754] = {.lex_state = 49}, - [3755] = {.lex_state = 48}, - [3756] = {.lex_state = 47}, - [3757] = {.lex_state = 45}, - [3758] = {.lex_state = 44}, - [3759] = {.lex_state = 44}, - [3760] = {.lex_state = 45}, - [3761] = {.lex_state = 48}, + [3425] = {.lex_state = 66}, + [3426] = {.lex_state = 62}, + [3427] = {.lex_state = 56}, + [3428] = {.lex_state = 52}, + [3429] = {.lex_state = 58}, + [3430] = {.lex_state = 51}, + [3431] = {.lex_state = 50}, + [3432] = {.lex_state = 65}, + [3433] = {.lex_state = 47}, + [3434] = {.lex_state = 46}, + [3435] = {.lex_state = 46}, + [3436] = {.lex_state = 47}, + [3437] = {.lex_state = 50}, + [3438] = {.lex_state = 51}, + [3439] = {.lex_state = 58}, + [3440] = {.lex_state = 52}, + [3441] = {.lex_state = 62}, + [3442] = {.lex_state = 62}, + [3443] = {.lex_state = 66}, + [3444] = {.lex_state = 63}, + [3445] = {.lex_state = 60}, + [3446] = {.lex_state = 49}, + [3447] = {.lex_state = 45}, + [3448] = {.lex_state = 48}, + [3449] = {.lex_state = 53}, + [3450] = {.lex_state = 54}, + [3451] = {.lex_state = 59}, + [3452] = {.lex_state = 55}, + [3453] = {.lex_state = 65}, + [3454] = {.lex_state = 64}, + [3455] = {.lex_state = 62}, + [3456] = {.lex_state = 62}, + [3457] = {.lex_state = 67}, + [3458] = {.lex_state = 68}, + [3459] = {.lex_state = 57}, + [3460] = {.lex_state = 68}, + [3461] = {.lex_state = 60}, + [3462] = {.lex_state = 63}, + [3463] = {.lex_state = 66}, + [3464] = {.lex_state = 62}, + [3465] = {.lex_state = 56}, + [3466] = {.lex_state = 52}, + [3467] = {.lex_state = 58}, + [3468] = {.lex_state = 51}, + [3469] = {.lex_state = 50}, + [3470] = {.lex_state = 57}, + [3471] = {.lex_state = 67}, + [3472] = {.lex_state = 47}, + [3473] = {.lex_state = 46}, + [3474] = {.lex_state = 62}, + [3475] = {.lex_state = 62}, + [3476] = {.lex_state = 62}, + [3477] = {.lex_state = 64}, + [3478] = {.lex_state = 65}, + [3479] = {.lex_state = 55}, + [3480] = {.lex_state = 59}, + [3481] = {.lex_state = 54}, + [3482] = {.lex_state = 53}, + [3483] = {.lex_state = 48}, + [3484] = {.lex_state = 45}, + [3485] = {.lex_state = 49}, + [3486] = {.lex_state = 49}, + [3487] = {.lex_state = 45}, + [3488] = {.lex_state = 48}, + [3489] = {.lex_state = 53}, + [3490] = {.lex_state = 54}, + [3491] = {.lex_state = 59}, + [3492] = {.lex_state = 55}, + [3493] = {.lex_state = 65}, + [3494] = {.lex_state = 64}, + [3495] = {.lex_state = 62}, + [3496] = {.lex_state = 62}, + [3497] = {.lex_state = 67}, + [3498] = {.lex_state = 57}, + [3499] = {.lex_state = 68}, + [3500] = {.lex_state = 60}, + [3501] = {.lex_state = 63}, + [3502] = {.lex_state = 66}, + [3503] = {.lex_state = 49}, + [3504] = {.lex_state = 62}, + [3505] = {.lex_state = 56}, + [3506] = {.lex_state = 52}, + [3507] = {.lex_state = 58}, + [3508] = {.lex_state = 51}, + [3509] = {.lex_state = 50}, + [3510] = {.lex_state = 47}, + [3511] = {.lex_state = 46}, + [3512] = {.lex_state = 46}, + [3513] = {.lex_state = 47}, + [3514] = {.lex_state = 50}, + [3515] = {.lex_state = 51}, + [3516] = {.lex_state = 58}, + [3517] = {.lex_state = 52}, + [3518] = {.lex_state = 56}, + [3519] = {.lex_state = 62}, + [3520] = {.lex_state = 66}, + [3521] = {.lex_state = 63}, + [3522] = {.lex_state = 60}, + [3523] = {.lex_state = 49}, + [3524] = {.lex_state = 45}, + [3525] = {.lex_state = 48}, + [3526] = {.lex_state = 53}, + [3527] = {.lex_state = 45}, + [3528] = {.lex_state = 48}, + [3529] = {.lex_state = 53}, + [3530] = {.lex_state = 54}, + [3531] = {.lex_state = 59}, + [3532] = {.lex_state = 55}, + [3533] = {.lex_state = 65}, + [3534] = {.lex_state = 64}, + [3535] = {.lex_state = 62}, + [3536] = {.lex_state = 62}, + [3537] = {.lex_state = 67}, + [3538] = {.lex_state = 68}, + [3539] = {.lex_state = 57}, + [3540] = {.lex_state = 68}, + [3541] = {.lex_state = 60}, + [3542] = {.lex_state = 63}, + [3543] = {.lex_state = 66}, + [3544] = {.lex_state = 62}, + [3545] = {.lex_state = 56}, + [3546] = {.lex_state = 52}, + [3547] = {.lex_state = 58}, + [3548] = {.lex_state = 51}, + [3549] = {.lex_state = 50}, + [3550] = {.lex_state = 57}, + [3551] = {.lex_state = 67}, + [3552] = {.lex_state = 47}, + [3553] = {.lex_state = 54}, + [3554] = {.lex_state = 59}, + [3555] = {.lex_state = 55}, + [3556] = {.lex_state = 46}, + [3557] = {.lex_state = 56}, + [3558] = {.lex_state = 62}, + [3559] = {.lex_state = 64}, + [3560] = {.lex_state = 65}, + [3561] = {.lex_state = 55}, + [3562] = {.lex_state = 59}, + [3563] = {.lex_state = 54}, + [3564] = {.lex_state = 53}, + [3565] = {.lex_state = 48}, + [3566] = {.lex_state = 45}, + [3567] = {.lex_state = 49}, + [3568] = {.lex_state = 49}, + [3569] = {.lex_state = 45}, + [3570] = {.lex_state = 48}, + [3571] = {.lex_state = 53}, + [3572] = {.lex_state = 54}, + [3573] = {.lex_state = 59}, + [3574] = {.lex_state = 55}, + [3575] = {.lex_state = 65}, + [3576] = {.lex_state = 64}, + [3577] = {.lex_state = 62}, + [3578] = {.lex_state = 62}, + [3579] = {.lex_state = 67}, + [3580] = {.lex_state = 65}, + [3581] = {.lex_state = 64}, + [3582] = {.lex_state = 57}, + [3583] = {.lex_state = 68}, + [3584] = {.lex_state = 60}, + [3585] = {.lex_state = 63}, + [3586] = {.lex_state = 66}, + [3587] = {.lex_state = 62}, + [3588] = {.lex_state = 56}, + [3589] = {.lex_state = 52}, + [3590] = {.lex_state = 58}, + [3591] = {.lex_state = 51}, + [3592] = {.lex_state = 50}, + [3593] = {.lex_state = 47}, + [3594] = {.lex_state = 46}, + [3595] = {.lex_state = 46}, + [3596] = {.lex_state = 47}, + [3597] = {.lex_state = 50}, + [3598] = {.lex_state = 51}, + [3599] = {.lex_state = 58}, + [3600] = {.lex_state = 52}, + [3601] = {.lex_state = 62}, + [3602] = {.lex_state = 62}, + [3603] = {.lex_state = 66}, + [3604] = {.lex_state = 49}, + [3605] = {.lex_state = 46}, + [3606] = {.lex_state = 62}, + [3607] = {.lex_state = 67}, + [3608] = {.lex_state = 45}, + [3609] = {.lex_state = 48}, + [3610] = {.lex_state = 53}, + [3611] = {.lex_state = 54}, + [3612] = {.lex_state = 59}, + [3613] = {.lex_state = 55}, + [3614] = {.lex_state = 65}, + [3615] = {.lex_state = 64}, + [3616] = {.lex_state = 62}, + [3617] = {.lex_state = 62}, + [3618] = {.lex_state = 67}, + [3619] = {.lex_state = 60}, + [3620] = {.lex_state = 57}, + [3621] = {.lex_state = 68}, + [3622] = {.lex_state = 60}, + [3623] = {.lex_state = 63}, + [3624] = {.lex_state = 66}, + [3625] = {.lex_state = 62}, + [3626] = {.lex_state = 56}, + [3627] = {.lex_state = 52}, + [3628] = {.lex_state = 58}, + [3629] = {.lex_state = 51}, + [3630] = {.lex_state = 50}, + [3631] = {.lex_state = 57}, + [3632] = {.lex_state = 68}, + [3633] = {.lex_state = 60}, + [3634] = {.lex_state = 68}, + [3635] = {.lex_state = 57}, + [3636] = {.lex_state = 47}, + [3637] = {.lex_state = 46}, + [3638] = {.lex_state = 67}, + [3639] = {.lex_state = 62}, + [3640] = {.lex_state = 62}, + [3641] = {.lex_state = 64}, + [3642] = {.lex_state = 65}, + [3643] = {.lex_state = 63}, + [3644] = {.lex_state = 59}, + [3645] = {.lex_state = 54}, + [3646] = {.lex_state = 53}, + [3647] = {.lex_state = 48}, + [3648] = {.lex_state = 45}, + [3649] = {.lex_state = 49}, + [3650] = {.lex_state = 45}, + [3651] = {.lex_state = 48}, + [3652] = {.lex_state = 53}, + [3653] = {.lex_state = 66}, + [3654] = {.lex_state = 59}, + [3655] = {.lex_state = 55}, + [3656] = {.lex_state = 65}, + [3657] = {.lex_state = 63}, + [3658] = {.lex_state = 66}, + [3659] = {.lex_state = 62}, + [3660] = {.lex_state = 64}, + [3661] = {.lex_state = 62}, + [3662] = {.lex_state = 62}, + [3663] = {.lex_state = 67}, + [3664] = {.lex_state = 49}, + [3665] = {.lex_state = 57}, + [3666] = {.lex_state = 68}, + [3667] = {.lex_state = 60}, + [3668] = {.lex_state = 63}, + [3669] = {.lex_state = 66}, + [3670] = {.lex_state = 54}, + [3671] = {.lex_state = 56}, + [3672] = {.lex_state = 52}, + [3673] = {.lex_state = 58}, + [3674] = {.lex_state = 51}, + [3675] = {.lex_state = 50}, + [3676] = {.lex_state = 47}, + [3677] = {.lex_state = 46}, + [3678] = {.lex_state = 46}, + [3679] = {.lex_state = 47}, + [3680] = {.lex_state = 50}, + [3681] = {.lex_state = 51}, + [3682] = {.lex_state = 58}, + [3683] = {.lex_state = 56}, + [3684] = {.lex_state = 52}, + [3685] = {.lex_state = 58}, + [3686] = {.lex_state = 52}, + [3687] = {.lex_state = 56}, + [3688] = {.lex_state = 62}, + [3689] = {.lex_state = 66}, + [3690] = {.lex_state = 49}, + [3691] = {.lex_state = 45}, + [3692] = {.lex_state = 48}, + [3693] = {.lex_state = 53}, + [3694] = {.lex_state = 54}, + [3695] = {.lex_state = 59}, + [3696] = {.lex_state = 55}, + [3697] = {.lex_state = 65}, + [3698] = {.lex_state = 64}, + [3699] = {.lex_state = 62}, + [3700] = {.lex_state = 62}, + [3701] = {.lex_state = 67}, + [3702] = {.lex_state = 63}, + [3703] = {.lex_state = 57}, + [3704] = {.lex_state = 68}, + [3705] = {.lex_state = 60}, + [3706] = {.lex_state = 63}, + [3707] = {.lex_state = 66}, + [3708] = {.lex_state = 62}, + [3709] = {.lex_state = 51}, + [3710] = {.lex_state = 50}, + [3711] = {.lex_state = 47}, + [3712] = {.lex_state = 56}, + [3713] = {.lex_state = 52}, + [3714] = {.lex_state = 58}, + [3715] = {.lex_state = 51}, + [3716] = {.lex_state = 50}, + [3717] = {.lex_state = 60}, + [3718] = {.lex_state = 68}, + [3719] = {.lex_state = 47}, + [3720] = {.lex_state = 46}, + [3721] = {.lex_state = 57}, + [3722] = {.lex_state = 67}, + [3723] = {.lex_state = 62}, + [3724] = {.lex_state = 62}, + [3725] = {.lex_state = 64}, + [3726] = {.lex_state = 65}, + [3727] = {.lex_state = 55}, + [3728] = {.lex_state = 59}, + [3729] = {.lex_state = 64}, + [3730] = {.lex_state = 53}, + [3731] = {.lex_state = 55}, + [3732] = {.lex_state = 49}, + [3733] = {.lex_state = 45}, + [3734] = {.lex_state = 48}, + [3735] = {.lex_state = 53}, + [3736] = {.lex_state = 54}, + [3737] = {.lex_state = 59}, + [3738] = {.lex_state = 55}, + [3739] = {.lex_state = 65}, + [3740] = {.lex_state = 64}, + [3741] = {.lex_state = 62}, + [3742] = {.lex_state = 62}, + [3743] = {.lex_state = 67}, + [3744] = {.lex_state = 45}, + [3745] = {.lex_state = 57}, + [3746] = {.lex_state = 68}, + [3747] = {.lex_state = 60}, + [3748] = {.lex_state = 63}, + [3749] = {.lex_state = 66}, + [3750] = {.lex_state = 62}, + [3751] = {.lex_state = 56}, + [3752] = {.lex_state = 52}, + [3753] = {.lex_state = 58}, + [3754] = {.lex_state = 51}, + [3755] = {.lex_state = 50}, + [3756] = {.lex_state = 49}, + [3757] = {.lex_state = 47}, + [3758] = {.lex_state = 46}, + [3759] = {.lex_state = 46}, + [3760] = {.lex_state = 47}, + [3761] = {.lex_state = 50}, [3762] = {.lex_state = 0}, - [3763] = {.lex_state = 49}, - [3764] = {.lex_state = 56}, - [3765] = {.lex_state = 50}, - [3766] = {.lex_state = 54}, - [3767] = {.lex_state = 60}, - [3768] = {.lex_state = 47}, - [3769] = {.lex_state = 43}, - [3770] = {.lex_state = 46}, - [3771] = {.lex_state = 51}, - [3772] = {.lex_state = 52}, - [3773] = {.lex_state = 57}, - [3774] = {.lex_state = 53}, - [3775] = {.lex_state = 63}, - [3776] = {.lex_state = 66}, - [3777] = {.lex_state = 60}, - [3778] = {.lex_state = 60}, - [3779] = {.lex_state = 65}, - [3780] = {.lex_state = 64}, - [3781] = {.lex_state = 55}, - [3782] = {.lex_state = 66}, - [3783] = {.lex_state = 58}, - [3784] = {.lex_state = 61}, - [3785] = {.lex_state = 64}, - [3786] = {.lex_state = 60}, - [3787] = {.lex_state = 54}, - [3788] = {.lex_state = 50}, - [3789] = {.lex_state = 56}, - [3790] = {.lex_state = 49}, - [3791] = {.lex_state = 48}, - [3792] = {.lex_state = 61}, - [3793] = {.lex_state = 58}, - [3794] = {.lex_state = 45}, - [3795] = {.lex_state = 44}, - [3796] = {.lex_state = 66}, - [3797] = {.lex_state = 55}, - [3798] = {.lex_state = 65}, - [3799] = {.lex_state = 60}, - [3800] = {.lex_state = 60}, - [3801] = {.lex_state = 62}, - [3802] = {.lex_state = 63}, - [3803] = {.lex_state = 53}, - [3804] = {.lex_state = 57}, - [3805] = {.lex_state = 52}, - [3806] = {.lex_state = 51}, - [3807] = {.lex_state = 47}, - [3808] = {.lex_state = 43}, - [3809] = {.lex_state = 46}, - [3810] = {.lex_state = 51}, - [3811] = {.lex_state = 52}, - [3812] = {.lex_state = 57}, - [3813] = {.lex_state = 53}, - [3814] = {.lex_state = 63}, - [3815] = {.lex_state = 62}, - [3816] = {.lex_state = 60}, - [3817] = {.lex_state = 60}, - [3818] = {.lex_state = 65}, - [3819] = {.lex_state = 46}, - [3820] = {.lex_state = 55}, - [3821] = {.lex_state = 66}, - [3822] = {.lex_state = 58}, - [3823] = {.lex_state = 61}, - [3824] = {.lex_state = 64}, - [3825] = {.lex_state = 60}, - [3826] = {.lex_state = 54}, - [3827] = {.lex_state = 50}, - [3828] = {.lex_state = 56}, - [3829] = {.lex_state = 49}, - [3830] = {.lex_state = 48}, - [3831] = {.lex_state = 43}, - [3832] = {.lex_state = 47}, - [3833] = {.lex_state = 45}, - [3834] = {.lex_state = 44}, - [3835] = {.lex_state = 44}, - [3836] = {.lex_state = 46}, - [3837] = {.lex_state = 48}, - [3838] = {.lex_state = 49}, - [3839] = {.lex_state = 56}, - [3840] = {.lex_state = 50}, - [3841] = {.lex_state = 54}, - [3842] = {.lex_state = 47}, - [3843] = {.lex_state = 43}, - [3844] = {.lex_state = 46}, - [3845] = {.lex_state = 51}, - [3846] = {.lex_state = 52}, - [3847] = {.lex_state = 57}, - [3848] = {.lex_state = 53}, - [3849] = {.lex_state = 63}, - [3850] = {.lex_state = 62}, - [3851] = {.lex_state = 60}, - [3852] = {.lex_state = 60}, - [3853] = {.lex_state = 65}, - [3854] = {.lex_state = 60}, - [3855] = {.lex_state = 55}, - [3856] = {.lex_state = 52}, - [3857] = {.lex_state = 58}, - [3858] = {.lex_state = 61}, - [3859] = {.lex_state = 64}, - [3860] = {.lex_state = 60}, - [3861] = {.lex_state = 54}, - [3862] = {.lex_state = 50}, - [3863] = {.lex_state = 56}, - [3864] = {.lex_state = 49}, - [3865] = {.lex_state = 48}, - [3866] = {.lex_state = 64}, - [3867] = {.lex_state = 61}, - [3868] = {.lex_state = 45}, - [3869] = {.lex_state = 44}, - [3870] = {.lex_state = 45}, - [3871] = {.lex_state = 66}, - [3872] = {.lex_state = 55}, - [3873] = {.lex_state = 65}, - [3874] = {.lex_state = 60}, - [3875] = {.lex_state = 60}, - [3876] = {.lex_state = 62}, - [3877] = {.lex_state = 63}, - [3878] = {.lex_state = 53}, - [3879] = {.lex_state = 57}, - [3880] = {.lex_state = 61}, - [3881] = {.lex_state = 47}, - [3882] = {.lex_state = 43}, - [3883] = {.lex_state = 46}, - [3884] = {.lex_state = 51}, - [3885] = {.lex_state = 52}, - [3886] = {.lex_state = 57}, - [3887] = {.lex_state = 53}, - [3888] = {.lex_state = 63}, - [3889] = {.lex_state = 62}, - [3890] = {.lex_state = 60}, - [3891] = {.lex_state = 60}, - [3892] = {.lex_state = 65}, - [3893] = {.lex_state = 51}, - [3894] = {.lex_state = 55}, - [3895] = {.lex_state = 66}, - [3896] = {.lex_state = 58}, - [3897] = {.lex_state = 61}, - [3898] = {.lex_state = 64}, - [3899] = {.lex_state = 60}, - [3900] = {.lex_state = 54}, - [3901] = {.lex_state = 50}, - [3902] = {.lex_state = 56}, - [3903] = {.lex_state = 49}, - [3904] = {.lex_state = 48}, - [3905] = {.lex_state = 46}, - [3906] = {.lex_state = 43}, - [3907] = {.lex_state = 45}, - [3908] = {.lex_state = 44}, - [3909] = {.lex_state = 47}, - [3910] = {.lex_state = 44}, - [3911] = {.lex_state = 45}, - [3912] = {.lex_state = 48}, - [3913] = {.lex_state = 49}, - [3914] = {.lex_state = 56}, - [3915] = {.lex_state = 50}, - [3916] = {.lex_state = 47}, - [3917] = {.lex_state = 43}, - [3918] = {.lex_state = 46}, - [3919] = {.lex_state = 51}, - [3920] = {.lex_state = 52}, - [3921] = {.lex_state = 57}, - [3922] = {.lex_state = 53}, - [3923] = {.lex_state = 63}, - [3924] = {.lex_state = 62}, - [3925] = {.lex_state = 60}, - [3926] = {.lex_state = 60}, - [3927] = {.lex_state = 65}, - [3928] = {.lex_state = 54}, - [3929] = {.lex_state = 55}, - [3930] = {.lex_state = 66}, - [3931] = {.lex_state = 58}, - [3932] = {.lex_state = 61}, - [3933] = {.lex_state = 64}, - [3934] = {.lex_state = 60}, - [3935] = {.lex_state = 54}, - [3936] = {.lex_state = 50}, - [3937] = {.lex_state = 56}, - [3938] = {.lex_state = 49}, - [3939] = {.lex_state = 48}, - [3940] = {.lex_state = 60}, - [3941] = {.lex_state = 58}, - [3942] = {.lex_state = 45}, - [3943] = {.lex_state = 44}, - [3944] = {.lex_state = 47}, - [3945] = {.lex_state = 43}, - [3946] = {.lex_state = 46}, - [3947] = {.lex_state = 51}, - [3948] = {.lex_state = 52}, - [3949] = {.lex_state = 57}, - [3950] = {.lex_state = 53}, - [3951] = {.lex_state = 63}, - [3952] = {.lex_state = 62}, - [3953] = {.lex_state = 60}, - [3954] = {.lex_state = 60}, - [3955] = {.lex_state = 65}, - [3956] = {.lex_state = 55}, - [3957] = {.lex_state = 66}, - [3958] = {.lex_state = 58}, - [3959] = {.lex_state = 61}, - [3960] = {.lex_state = 64}, - [3961] = {.lex_state = 60}, - [3962] = {.lex_state = 54}, - [3963] = {.lex_state = 50}, - [3964] = {.lex_state = 56}, - [3965] = {.lex_state = 49}, - [3966] = {.lex_state = 48}, - [3967] = {.lex_state = 45}, - [3968] = {.lex_state = 44}, - [3969] = {.lex_state = 47}, - [3970] = {.lex_state = 43}, - [3971] = {.lex_state = 46}, - [3972] = {.lex_state = 51}, - [3973] = {.lex_state = 52}, - [3974] = {.lex_state = 57}, - [3975] = {.lex_state = 53}, - [3976] = {.lex_state = 63}, - [3977] = {.lex_state = 62}, - [3978] = {.lex_state = 60}, - [3979] = {.lex_state = 60}, - [3980] = {.lex_state = 65}, - [3981] = {.lex_state = 55}, - [3982] = {.lex_state = 66}, - [3983] = {.lex_state = 58}, + [3763] = {.lex_state = 51}, + [3764] = {.lex_state = 58}, + [3765] = {.lex_state = 52}, + [3766] = {.lex_state = 56}, + [3767] = {.lex_state = 62}, + [3768] = {.lex_state = 49}, + [3769] = {.lex_state = 45}, + [3770] = {.lex_state = 48}, + [3771] = {.lex_state = 53}, + [3772] = {.lex_state = 54}, + [3773] = {.lex_state = 59}, + [3774] = {.lex_state = 55}, + [3775] = {.lex_state = 65}, + [3776] = {.lex_state = 68}, + [3777] = {.lex_state = 62}, + [3778] = {.lex_state = 62}, + [3779] = {.lex_state = 67}, + [3780] = {.lex_state = 66}, + [3781] = {.lex_state = 57}, + [3782] = {.lex_state = 68}, + [3783] = {.lex_state = 60}, + [3784] = {.lex_state = 63}, + [3785] = {.lex_state = 66}, + [3786] = {.lex_state = 62}, + [3787] = {.lex_state = 56}, + [3788] = {.lex_state = 52}, + [3789] = {.lex_state = 58}, + [3790] = {.lex_state = 51}, + [3791] = {.lex_state = 50}, + [3792] = {.lex_state = 63}, + [3793] = {.lex_state = 60}, + [3794] = {.lex_state = 47}, + [3795] = {.lex_state = 46}, + [3796] = {.lex_state = 68}, + [3797] = {.lex_state = 57}, + [3798] = {.lex_state = 67}, + [3799] = {.lex_state = 62}, + [3800] = {.lex_state = 62}, + [3801] = {.lex_state = 64}, + [3802] = {.lex_state = 65}, + [3803] = {.lex_state = 55}, + [3804] = {.lex_state = 59}, + [3805] = {.lex_state = 54}, + [3806] = {.lex_state = 53}, + [3807] = {.lex_state = 49}, + [3808] = {.lex_state = 45}, + [3809] = {.lex_state = 48}, + [3810] = {.lex_state = 53}, + [3811] = {.lex_state = 54}, + [3812] = {.lex_state = 59}, + [3813] = {.lex_state = 55}, + [3814] = {.lex_state = 65}, + [3815] = {.lex_state = 64}, + [3816] = {.lex_state = 62}, + [3817] = {.lex_state = 62}, + [3818] = {.lex_state = 67}, + [3819] = {.lex_state = 48}, + [3820] = {.lex_state = 57}, + [3821] = {.lex_state = 68}, + [3822] = {.lex_state = 60}, + [3823] = {.lex_state = 63}, + [3824] = {.lex_state = 66}, + [3825] = {.lex_state = 62}, + [3826] = {.lex_state = 56}, + [3827] = {.lex_state = 52}, + [3828] = {.lex_state = 58}, + [3829] = {.lex_state = 51}, + [3830] = {.lex_state = 50}, + [3831] = {.lex_state = 45}, + [3832] = {.lex_state = 49}, + [3833] = {.lex_state = 47}, + [3834] = {.lex_state = 46}, + [3835] = {.lex_state = 46}, + [3836] = {.lex_state = 48}, + [3837] = {.lex_state = 50}, + [3838] = {.lex_state = 51}, + [3839] = {.lex_state = 58}, + [3840] = {.lex_state = 52}, + [3841] = {.lex_state = 56}, + [3842] = {.lex_state = 49}, + [3843] = {.lex_state = 45}, + [3844] = {.lex_state = 48}, + [3845] = {.lex_state = 53}, + [3846] = {.lex_state = 54}, + [3847] = {.lex_state = 59}, + [3848] = {.lex_state = 55}, + [3849] = {.lex_state = 65}, + [3850] = {.lex_state = 64}, + [3851] = {.lex_state = 62}, + [3852] = {.lex_state = 62}, + [3853] = {.lex_state = 67}, + [3854] = {.lex_state = 62}, + [3855] = {.lex_state = 57}, + [3856] = {.lex_state = 54}, + [3857] = {.lex_state = 60}, + [3858] = {.lex_state = 63}, + [3859] = {.lex_state = 66}, + [3860] = {.lex_state = 62}, + [3861] = {.lex_state = 56}, + [3862] = {.lex_state = 52}, + [3863] = {.lex_state = 58}, + [3864] = {.lex_state = 51}, + [3865] = {.lex_state = 50}, + [3866] = {.lex_state = 66}, + [3867] = {.lex_state = 63}, + [3868] = {.lex_state = 47}, + [3869] = {.lex_state = 46}, + [3870] = {.lex_state = 47}, + [3871] = {.lex_state = 68}, + [3872] = {.lex_state = 57}, + [3873] = {.lex_state = 67}, + [3874] = {.lex_state = 62}, + [3875] = {.lex_state = 62}, + [3876] = {.lex_state = 64}, + [3877] = {.lex_state = 65}, + [3878] = {.lex_state = 55}, + [3879] = {.lex_state = 59}, + [3880] = {.lex_state = 63}, + [3881] = {.lex_state = 49}, + [3882] = {.lex_state = 45}, + [3883] = {.lex_state = 48}, + [3884] = {.lex_state = 53}, + [3885] = {.lex_state = 54}, + [3886] = {.lex_state = 59}, + [3887] = {.lex_state = 55}, + [3888] = {.lex_state = 65}, + [3889] = {.lex_state = 64}, + [3890] = {.lex_state = 62}, + [3891] = {.lex_state = 62}, + [3892] = {.lex_state = 67}, + [3893] = {.lex_state = 53}, + [3894] = {.lex_state = 57}, + [3895] = {.lex_state = 68}, + [3896] = {.lex_state = 60}, + [3897] = {.lex_state = 63}, + [3898] = {.lex_state = 66}, + [3899] = {.lex_state = 62}, + [3900] = {.lex_state = 56}, + [3901] = {.lex_state = 52}, + [3902] = {.lex_state = 58}, + [3903] = {.lex_state = 51}, + [3904] = {.lex_state = 50}, + [3905] = {.lex_state = 48}, + [3906] = {.lex_state = 45}, + [3907] = {.lex_state = 47}, + [3908] = {.lex_state = 46}, + [3909] = {.lex_state = 49}, + [3910] = {.lex_state = 46}, + [3911] = {.lex_state = 47}, + [3912] = {.lex_state = 50}, + [3913] = {.lex_state = 51}, + [3914] = {.lex_state = 58}, + [3915] = {.lex_state = 52}, + [3916] = {.lex_state = 49}, + [3917] = {.lex_state = 45}, + [3918] = {.lex_state = 48}, + [3919] = {.lex_state = 53}, + [3920] = {.lex_state = 54}, + [3921] = {.lex_state = 59}, + [3922] = {.lex_state = 55}, + [3923] = {.lex_state = 65}, + [3924] = {.lex_state = 64}, + [3925] = {.lex_state = 62}, + [3926] = {.lex_state = 62}, + [3927] = {.lex_state = 67}, + [3928] = {.lex_state = 56}, + [3929] = {.lex_state = 57}, + [3930] = {.lex_state = 68}, + [3931] = {.lex_state = 60}, + [3932] = {.lex_state = 63}, + [3933] = {.lex_state = 66}, + [3934] = {.lex_state = 62}, + [3935] = {.lex_state = 56}, + [3936] = {.lex_state = 52}, + [3937] = {.lex_state = 58}, + [3938] = {.lex_state = 51}, + [3939] = {.lex_state = 50}, + [3940] = {.lex_state = 62}, + [3941] = {.lex_state = 60}, + [3942] = {.lex_state = 47}, + [3943] = {.lex_state = 46}, + [3944] = {.lex_state = 49}, + [3945] = {.lex_state = 45}, + [3946] = {.lex_state = 48}, + [3947] = {.lex_state = 53}, + [3948] = {.lex_state = 54}, + [3949] = {.lex_state = 59}, + [3950] = {.lex_state = 55}, + [3951] = {.lex_state = 65}, + [3952] = {.lex_state = 64}, + [3953] = {.lex_state = 62}, + [3954] = {.lex_state = 62}, + [3955] = {.lex_state = 67}, + [3956] = {.lex_state = 57}, + [3957] = {.lex_state = 68}, + [3958] = {.lex_state = 60}, + [3959] = {.lex_state = 63}, + [3960] = {.lex_state = 66}, + [3961] = {.lex_state = 62}, + [3962] = {.lex_state = 56}, + [3963] = {.lex_state = 52}, + [3964] = {.lex_state = 58}, + [3965] = {.lex_state = 51}, + [3966] = {.lex_state = 50}, + [3967] = {.lex_state = 47}, + [3968] = {.lex_state = 46}, + [3969] = {.lex_state = 49}, + [3970] = {.lex_state = 45}, + [3971] = {.lex_state = 48}, + [3972] = {.lex_state = 53}, + [3973] = {.lex_state = 54}, + [3974] = {.lex_state = 59}, + [3975] = {.lex_state = 55}, + [3976] = {.lex_state = 65}, + [3977] = {.lex_state = 64}, + [3978] = {.lex_state = 62}, + [3979] = {.lex_state = 62}, + [3980] = {.lex_state = 67}, + [3981] = {.lex_state = 57}, + [3982] = {.lex_state = 68}, + [3983] = {.lex_state = 60}, [3984] = {(TSStateId)(-1)}, [3985] = {(TSStateId)(-1)}, }; @@ -16548,7 +16949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATvolt] = ACTIONS(79), [aux_sym_text_token1] = ACTIONS(81), [aux_sym_text_token2] = ACTIONS(81), - [aux_sym_text_token3] = ACTIONS(81), + [aux_sym_text_token3] = ACTIONS(83), }, [2] = { [sym__definition] = STATE(1064), @@ -16603,49 +17004,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [3] = { [sym__definition] = STATE(1092), @@ -16700,49 +17101,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [4] = { [sym__definition] = STATE(1064), @@ -16797,49 +17198,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [5] = { [sym__definition] = STATE(1092), @@ -16894,49 +17295,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [6] = { [sym__definition] = STATE(1064), @@ -16991,49 +17392,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [7] = { [sym__definition] = STATE(1092), @@ -17088,49 +17489,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [8] = { [sym__definition] = STATE(1092), @@ -17185,49 +17586,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [9] = { [sym__definition] = STATE(1064), @@ -17282,49 +17683,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [10] = { [sym__definition] = STATE(1064), @@ -17379,49 +17780,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [11] = { [sym__definition] = STATE(1092), @@ -17476,49 +17877,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [12] = { [sym__definition] = STATE(1092), @@ -17573,49 +17974,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [13] = { [sym__definition] = STATE(1092), @@ -17670,49 +18071,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [14] = { [sym__definition] = STATE(1064), @@ -17767,49 +18168,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [15] = { [sym__definition] = STATE(1064), @@ -17864,49 +18265,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [16] = { [sym__definition] = STATE(1092), @@ -17961,49 +18362,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [17] = { [sym__definition] = STATE(1064), @@ -18058,49 +18459,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [18] = { [sym__definition] = STATE(1092), @@ -18155,49 +18556,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [19] = { [sym__definition] = STATE(1092), @@ -18252,49 +18653,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [20] = { [sym__definition] = STATE(1064), @@ -18349,49 +18750,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [21] = { [sym__definition] = STATE(1064), @@ -18446,49 +18847,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [22] = { [sym__definition] = STATE(1064), @@ -18543,49 +18944,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [23] = { [sym__definition] = STATE(1092), @@ -18640,49 +19041,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [24] = { [sym__definition] = STATE(1092), @@ -18737,49 +19138,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [25] = { [sym__definition] = STATE(1064), @@ -18834,49 +19235,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [26] = { [sym__definition] = STATE(1092), @@ -18931,49 +19332,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [27] = { [sym__definition] = STATE(1064), @@ -19028,49 +19429,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [28] = { [sym__definition] = STATE(1092), @@ -19125,49 +19526,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [29] = { [sym__definition] = STATE(1092), @@ -19222,49 +19623,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [30] = { [sym__definition] = STATE(1064), @@ -19319,49 +19720,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [31] = { [sym__definition] = STATE(1064), @@ -19416,49 +19817,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [32] = { [sym__definition] = STATE(1092), @@ -19513,49 +19914,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [33] = { [sym__definition] = STATE(1092), @@ -19610,49 +20011,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [34] = { [sym__definition] = STATE(1064), @@ -19707,49 +20108,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [35] = { [sym__definition] = STATE(1064), @@ -19804,49 +20205,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [36] = { [sym__definition] = STATE(1092), @@ -19901,49 +20302,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [37] = { [sym__definition] = STATE(1064), @@ -19998,49 +20399,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [38] = { [sym__definition] = STATE(1092), @@ -20095,49 +20496,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [39] = { [sym__definition] = STATE(1064), @@ -20192,49 +20593,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [40] = { [sym__definition] = STATE(1092), @@ -20289,49 +20690,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [41] = { [sym__definition] = STATE(1064), @@ -20386,49 +20787,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [42] = { [sym__definition] = STATE(1092), @@ -20483,49 +20884,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [43] = { [sym__definition] = STATE(1064), @@ -20580,49 +20981,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [44] = { [sym__definition] = STATE(1092), @@ -20677,49 +21078,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [45] = { [sym__definition] = STATE(1064), @@ -20774,49 +21175,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [46] = { [sym__definition] = STATE(1092), @@ -20871,49 +21272,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [47] = { [sym__definition] = STATE(1064), @@ -20968,49 +21369,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [48] = { [sym__definition] = STATE(1092), @@ -21065,49 +21466,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [49] = { [sym__definition] = STATE(1064), @@ -21162,49 +21563,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [50] = { [sym__definition] = STATE(1092), @@ -21259,49 +21660,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [51] = { [sym__definition] = STATE(1064), @@ -21356,49 +21757,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [52] = { [sym__definition] = STATE(1064), @@ -21453,49 +21854,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [53] = { [sym__definition] = STATE(1064), @@ -21550,49 +21951,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [54] = { [sym__definition] = STATE(1092), @@ -21647,49 +22048,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [55] = { [sym__definition] = STATE(1064), @@ -21744,49 +22145,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [56] = { [sym__definition] = STATE(1092), @@ -21841,49 +22242,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [57] = { [sym__definition] = STATE(1064), @@ -21938,49 +22339,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [58] = { [sym__definition] = STATE(1092), @@ -22035,49 +22436,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [59] = { [sym__definition] = STATE(1092), @@ -22132,49 +22533,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(61), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(163), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [60] = { [sym__definition] = STATE(1092), @@ -22227,49 +22628,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(110), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATendguest] = ACTIONS(245), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATendguest] = ACTIONS(251), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [61] = { [sym__definition] = STATE(1092), @@ -22322,49 +22723,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(110), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATendguest] = ACTIONS(247), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATendguest] = ACTIONS(253), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [62] = { [sym__definition] = STATE(495), @@ -22417,49 +22818,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(897), [aux_sym__if_statement_directive_body_repeat1] = STATE(76), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(249), - [anon_sym_LBRACE_LBRACE] = ACTIONS(251), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(253), - [anon_sym_ATphp] = ACTIONS(255), - [aux_sym_attribute_token1] = ACTIONS(257), - [aux_sym__inline_directive_token1] = ACTIONS(259), - [anon_sym_ATfragment] = ACTIONS(261), - [anon_sym_ATsection] = ACTIONS(263), - [anon_sym_ATonce] = ACTIONS(265), - [anon_sym_ATverbatim] = ACTIONS(267), - [anon_sym_ATpush] = ACTIONS(269), - [anon_sym_ATpushOnce] = ACTIONS(271), - [anon_sym_ATpushIf] = ACTIONS(273), - [anon_sym_ATprepend] = ACTIONS(275), - [anon_sym_ATprependOnce] = ACTIONS(277), - [anon_sym_ATelse] = ACTIONS(279), - [aux_sym_conditional_keyword_token1] = ACTIONS(281), - [anon_sym_ATif] = ACTIONS(283), - [anon_sym_ATunless] = ACTIONS(285), - [anon_sym_ATisset] = ACTIONS(287), - [anon_sym_ATempty] = ACTIONS(289), - [anon_sym_ATendempty] = ACTIONS(291), - [anon_sym_ATauth] = ACTIONS(293), - [anon_sym_ATguest] = ACTIONS(295), - [anon_sym_ATproduction] = ACTIONS(297), - [anon_sym_ATenv] = ACTIONS(299), - [anon_sym_AThasSection] = ACTIONS(301), - [anon_sym_ATsectionMissing] = ACTIONS(303), - [anon_sym_ATerror] = ACTIONS(305), - [aux_sym__custom_token1] = ACTIONS(307), - [aux_sym__custom_token2] = ACTIONS(309), - [anon_sym_ATswitch] = ACTIONS(311), - [aux_sym_loop_operator_token1] = ACTIONS(313), - [anon_sym_ATfor] = ACTIONS(315), - [anon_sym_ATforeach] = ACTIONS(317), - [anon_sym_ATforelse] = ACTIONS(319), - [anon_sym_ATwhile] = ACTIONS(321), - [anon_sym_ATpersist] = ACTIONS(323), - [anon_sym_ATteleport] = ACTIONS(325), - [anon_sym_ATvolt] = ACTIONS(327), - [aux_sym_text_token1] = ACTIONS(329), - [aux_sym_text_token2] = ACTIONS(329), - [aux_sym_text_token3] = ACTIONS(329), + [aux_sym_keyword_token1] = ACTIONS(255), + [anon_sym_LBRACE_LBRACE] = ACTIONS(257), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(259), + [anon_sym_ATphp] = ACTIONS(261), + [aux_sym_attribute_token1] = ACTIONS(263), + [aux_sym__inline_directive_token1] = ACTIONS(265), + [anon_sym_ATfragment] = ACTIONS(267), + [anon_sym_ATsection] = ACTIONS(269), + [anon_sym_ATonce] = ACTIONS(271), + [anon_sym_ATverbatim] = ACTIONS(273), + [anon_sym_ATpush] = ACTIONS(275), + [anon_sym_ATpushOnce] = ACTIONS(277), + [anon_sym_ATpushIf] = ACTIONS(279), + [anon_sym_ATprepend] = ACTIONS(281), + [anon_sym_ATprependOnce] = ACTIONS(283), + [anon_sym_ATelse] = ACTIONS(285), + [aux_sym_conditional_keyword_token1] = ACTIONS(287), + [anon_sym_ATif] = ACTIONS(289), + [anon_sym_ATunless] = ACTIONS(291), + [anon_sym_ATisset] = ACTIONS(293), + [anon_sym_ATempty] = ACTIONS(295), + [anon_sym_ATendempty] = ACTIONS(297), + [anon_sym_ATauth] = ACTIONS(299), + [anon_sym_ATguest] = ACTIONS(301), + [anon_sym_ATproduction] = ACTIONS(303), + [anon_sym_ATenv] = ACTIONS(305), + [anon_sym_AThasSection] = ACTIONS(307), + [anon_sym_ATsectionMissing] = ACTIONS(309), + [anon_sym_ATerror] = ACTIONS(311), + [aux_sym__custom_token1] = ACTIONS(313), + [aux_sym__custom_token2] = ACTIONS(315), + [anon_sym_ATswitch] = ACTIONS(317), + [aux_sym_loop_operator_token1] = ACTIONS(319), + [anon_sym_ATfor] = ACTIONS(321), + [anon_sym_ATforeach] = ACTIONS(323), + [anon_sym_ATforelse] = ACTIONS(325), + [anon_sym_ATwhile] = ACTIONS(327), + [anon_sym_ATpersist] = ACTIONS(329), + [anon_sym_ATteleport] = ACTIONS(331), + [anon_sym_ATvolt] = ACTIONS(333), + [aux_sym_text_token1] = ACTIONS(335), + [aux_sym_text_token2] = ACTIONS(335), + [aux_sym_text_token3] = ACTIONS(337), }, [63] = { [sym__definition] = STATE(1065), @@ -22512,49 +22913,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(379), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(387), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [64] = { [sym__definition] = STATE(1065), @@ -22607,49 +23008,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(413), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(423), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [65] = { [sym__definition] = STATE(1065), @@ -22702,49 +23103,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(415), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(425), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [66] = { [sym__definition] = STATE(1002), @@ -22797,49 +23198,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1012), [aux_sym__if_statement_directive_body_repeat1] = STATE(66), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(417), - [anon_sym_LBRACE_LBRACE] = ACTIONS(420), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(423), - [anon_sym_ATphp] = ACTIONS(426), - [aux_sym_attribute_token1] = ACTIONS(429), - [aux_sym__inline_directive_token1] = ACTIONS(432), - [anon_sym_ATfragment] = ACTIONS(435), - [anon_sym_ATsection] = ACTIONS(438), - [anon_sym_ATonce] = ACTIONS(441), - [anon_sym_ATverbatim] = ACTIONS(444), - [anon_sym_ATpush] = ACTIONS(447), - [anon_sym_ATpushOnce] = ACTIONS(450), - [anon_sym_ATpushIf] = ACTIONS(453), - [anon_sym_ATprepend] = ACTIONS(456), - [anon_sym_ATprependOnce] = ACTIONS(459), - [anon_sym_ATelse] = ACTIONS(462), - [aux_sym_conditional_keyword_token1] = ACTIONS(465), - [anon_sym_ATif] = ACTIONS(468), - [anon_sym_ATendif] = ACTIONS(471), - [anon_sym_ATunless] = ACTIONS(473), - [anon_sym_ATisset] = ACTIONS(476), - [anon_sym_ATempty] = ACTIONS(479), - [anon_sym_ATauth] = ACTIONS(482), - [anon_sym_ATguest] = ACTIONS(485), - [anon_sym_ATproduction] = ACTIONS(488), - [anon_sym_ATenv] = ACTIONS(491), - [anon_sym_AThasSection] = ACTIONS(494), - [anon_sym_ATsectionMissing] = ACTIONS(497), - [anon_sym_ATerror] = ACTIONS(500), - [aux_sym__custom_token1] = ACTIONS(503), - [aux_sym__custom_token2] = ACTIONS(506), - [anon_sym_ATswitch] = ACTIONS(509), - [aux_sym_loop_operator_token1] = ACTIONS(512), - [anon_sym_ATfor] = ACTIONS(515), - [anon_sym_ATforeach] = ACTIONS(518), - [anon_sym_ATforelse] = ACTIONS(521), - [anon_sym_ATwhile] = ACTIONS(524), - [anon_sym_ATpersist] = ACTIONS(527), - [anon_sym_ATteleport] = ACTIONS(530), - [anon_sym_ATvolt] = ACTIONS(533), - [aux_sym_text_token1] = ACTIONS(536), - [aux_sym_text_token2] = ACTIONS(536), - [aux_sym_text_token3] = ACTIONS(536), + [aux_sym_keyword_token1] = ACTIONS(427), + [anon_sym_LBRACE_LBRACE] = ACTIONS(430), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(433), + [anon_sym_ATphp] = ACTIONS(436), + [aux_sym_attribute_token1] = ACTIONS(439), + [aux_sym__inline_directive_token1] = ACTIONS(442), + [anon_sym_ATfragment] = ACTIONS(445), + [anon_sym_ATsection] = ACTIONS(448), + [anon_sym_ATonce] = ACTIONS(451), + [anon_sym_ATverbatim] = ACTIONS(454), + [anon_sym_ATpush] = ACTIONS(457), + [anon_sym_ATpushOnce] = ACTIONS(460), + [anon_sym_ATpushIf] = ACTIONS(463), + [anon_sym_ATprepend] = ACTIONS(466), + [anon_sym_ATprependOnce] = ACTIONS(469), + [anon_sym_ATelse] = ACTIONS(472), + [aux_sym_conditional_keyword_token1] = ACTIONS(475), + [anon_sym_ATif] = ACTIONS(478), + [anon_sym_ATendif] = ACTIONS(481), + [anon_sym_ATunless] = ACTIONS(483), + [anon_sym_ATisset] = ACTIONS(486), + [anon_sym_ATempty] = ACTIONS(489), + [anon_sym_ATauth] = ACTIONS(492), + [anon_sym_ATguest] = ACTIONS(495), + [anon_sym_ATproduction] = ACTIONS(498), + [anon_sym_ATenv] = ACTIONS(501), + [anon_sym_AThasSection] = ACTIONS(504), + [anon_sym_ATsectionMissing] = ACTIONS(507), + [anon_sym_ATerror] = ACTIONS(510), + [aux_sym__custom_token1] = ACTIONS(513), + [aux_sym__custom_token2] = ACTIONS(516), + [anon_sym_ATswitch] = ACTIONS(519), + [aux_sym_loop_operator_token1] = ACTIONS(522), + [anon_sym_ATfor] = ACTIONS(525), + [anon_sym_ATforeach] = ACTIONS(528), + [anon_sym_ATforelse] = ACTIONS(531), + [anon_sym_ATwhile] = ACTIONS(534), + [anon_sym_ATpersist] = ACTIONS(537), + [anon_sym_ATteleport] = ACTIONS(540), + [anon_sym_ATvolt] = ACTIONS(543), + [aux_sym_text_token1] = ACTIONS(546), + [aux_sym_text_token2] = ACTIONS(546), + [aux_sym_text_token3] = ACTIONS(549), }, [67] = { [sym__definition] = STATE(1065), @@ -22892,49 +23293,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(539), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(552), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [68] = { [sym__definition] = STATE(580), @@ -22987,49 +23388,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(964), [aux_sym__if_statement_directive_body_repeat1] = STATE(87), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(541), - [anon_sym_LBRACE_LBRACE] = ACTIONS(543), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(545), - [anon_sym_ATphp] = ACTIONS(547), - [aux_sym_attribute_token1] = ACTIONS(549), - [aux_sym__inline_directive_token1] = ACTIONS(551), - [anon_sym_ATfragment] = ACTIONS(553), - [anon_sym_ATsection] = ACTIONS(555), - [anon_sym_ATonce] = ACTIONS(557), - [anon_sym_ATverbatim] = ACTIONS(559), - [anon_sym_ATpush] = ACTIONS(561), - [anon_sym_ATpushOnce] = ACTIONS(563), - [anon_sym_ATpushIf] = ACTIONS(565), - [anon_sym_ATprepend] = ACTIONS(567), - [anon_sym_ATprependOnce] = ACTIONS(569), - [anon_sym_ATelse] = ACTIONS(571), - [aux_sym_conditional_keyword_token1] = ACTIONS(573), - [anon_sym_ATif] = ACTIONS(575), - [anon_sym_ATunless] = ACTIONS(577), - [anon_sym_ATisset] = ACTIONS(579), - [anon_sym_ATendisset] = ACTIONS(581), - [anon_sym_ATempty] = ACTIONS(583), - [anon_sym_ATauth] = ACTIONS(585), - [anon_sym_ATguest] = ACTIONS(587), - [anon_sym_ATproduction] = ACTIONS(589), - [anon_sym_ATenv] = ACTIONS(591), - [anon_sym_AThasSection] = ACTIONS(593), - [anon_sym_ATsectionMissing] = ACTIONS(595), - [anon_sym_ATerror] = ACTIONS(597), - [aux_sym__custom_token1] = ACTIONS(599), - [aux_sym__custom_token2] = ACTIONS(601), - [anon_sym_ATswitch] = ACTIONS(603), - [aux_sym_loop_operator_token1] = ACTIONS(605), - [anon_sym_ATfor] = ACTIONS(607), - [anon_sym_ATforeach] = ACTIONS(609), - [anon_sym_ATforelse] = ACTIONS(611), - [anon_sym_ATwhile] = ACTIONS(613), - [anon_sym_ATpersist] = ACTIONS(615), - [anon_sym_ATteleport] = ACTIONS(617), - [anon_sym_ATvolt] = ACTIONS(619), - [aux_sym_text_token1] = ACTIONS(621), - [aux_sym_text_token2] = ACTIONS(621), - [aux_sym_text_token3] = ACTIONS(621), + [aux_sym_keyword_token1] = ACTIONS(554), + [anon_sym_LBRACE_LBRACE] = ACTIONS(556), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(558), + [anon_sym_ATphp] = ACTIONS(560), + [aux_sym_attribute_token1] = ACTIONS(562), + [aux_sym__inline_directive_token1] = ACTIONS(564), + [anon_sym_ATfragment] = ACTIONS(566), + [anon_sym_ATsection] = ACTIONS(568), + [anon_sym_ATonce] = ACTIONS(570), + [anon_sym_ATverbatim] = ACTIONS(572), + [anon_sym_ATpush] = ACTIONS(574), + [anon_sym_ATpushOnce] = ACTIONS(576), + [anon_sym_ATpushIf] = ACTIONS(578), + [anon_sym_ATprepend] = ACTIONS(580), + [anon_sym_ATprependOnce] = ACTIONS(582), + [anon_sym_ATelse] = ACTIONS(584), + [aux_sym_conditional_keyword_token1] = ACTIONS(586), + [anon_sym_ATif] = ACTIONS(588), + [anon_sym_ATunless] = ACTIONS(590), + [anon_sym_ATisset] = ACTIONS(592), + [anon_sym_ATendisset] = ACTIONS(594), + [anon_sym_ATempty] = ACTIONS(596), + [anon_sym_ATauth] = ACTIONS(598), + [anon_sym_ATguest] = ACTIONS(600), + [anon_sym_ATproduction] = ACTIONS(602), + [anon_sym_ATenv] = ACTIONS(604), + [anon_sym_AThasSection] = ACTIONS(606), + [anon_sym_ATsectionMissing] = ACTIONS(608), + [anon_sym_ATerror] = ACTIONS(610), + [aux_sym__custom_token1] = ACTIONS(612), + [aux_sym__custom_token2] = ACTIONS(614), + [anon_sym_ATswitch] = ACTIONS(616), + [aux_sym_loop_operator_token1] = ACTIONS(618), + [anon_sym_ATfor] = ACTIONS(620), + [anon_sym_ATforeach] = ACTIONS(622), + [anon_sym_ATforelse] = ACTIONS(624), + [anon_sym_ATwhile] = ACTIONS(626), + [anon_sym_ATpersist] = ACTIONS(628), + [anon_sym_ATteleport] = ACTIONS(630), + [anon_sym_ATvolt] = ACTIONS(632), + [aux_sym_text_token1] = ACTIONS(634), + [aux_sym_text_token2] = ACTIONS(634), + [aux_sym_text_token3] = ACTIONS(636), }, [69] = { [sym__definition] = STATE(1065), @@ -23082,49 +23483,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(623), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(638), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [70] = { [sym__definition] = STATE(1065), @@ -23177,49 +23578,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(625), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(640), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [71] = { [sym__definition] = STATE(580), @@ -23272,49 +23673,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(964), [aux_sym__if_statement_directive_body_repeat1] = STATE(68), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(541), - [anon_sym_LBRACE_LBRACE] = ACTIONS(543), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(545), - [anon_sym_ATphp] = ACTIONS(547), - [aux_sym_attribute_token1] = ACTIONS(549), - [aux_sym__inline_directive_token1] = ACTIONS(551), - [anon_sym_ATfragment] = ACTIONS(553), - [anon_sym_ATsection] = ACTIONS(555), - [anon_sym_ATonce] = ACTIONS(557), - [anon_sym_ATverbatim] = ACTIONS(559), - [anon_sym_ATpush] = ACTIONS(561), - [anon_sym_ATpushOnce] = ACTIONS(563), - [anon_sym_ATpushIf] = ACTIONS(565), - [anon_sym_ATprepend] = ACTIONS(567), - [anon_sym_ATprependOnce] = ACTIONS(569), - [anon_sym_ATelse] = ACTIONS(571), - [aux_sym_conditional_keyword_token1] = ACTIONS(573), - [anon_sym_ATif] = ACTIONS(575), - [anon_sym_ATunless] = ACTIONS(577), - [anon_sym_ATisset] = ACTIONS(579), - [anon_sym_ATendisset] = ACTIONS(291), - [anon_sym_ATempty] = ACTIONS(583), - [anon_sym_ATauth] = ACTIONS(585), - [anon_sym_ATguest] = ACTIONS(587), - [anon_sym_ATproduction] = ACTIONS(589), - [anon_sym_ATenv] = ACTIONS(591), - [anon_sym_AThasSection] = ACTIONS(593), - [anon_sym_ATsectionMissing] = ACTIONS(595), - [anon_sym_ATerror] = ACTIONS(597), - [aux_sym__custom_token1] = ACTIONS(599), - [aux_sym__custom_token2] = ACTIONS(601), - [anon_sym_ATswitch] = ACTIONS(603), - [aux_sym_loop_operator_token1] = ACTIONS(605), - [anon_sym_ATfor] = ACTIONS(607), - [anon_sym_ATforeach] = ACTIONS(609), - [anon_sym_ATforelse] = ACTIONS(611), - [anon_sym_ATwhile] = ACTIONS(613), - [anon_sym_ATpersist] = ACTIONS(615), - [anon_sym_ATteleport] = ACTIONS(617), - [anon_sym_ATvolt] = ACTIONS(619), - [aux_sym_text_token1] = ACTIONS(621), - [aux_sym_text_token2] = ACTIONS(621), - [aux_sym_text_token3] = ACTIONS(621), + [aux_sym_keyword_token1] = ACTIONS(554), + [anon_sym_LBRACE_LBRACE] = ACTIONS(556), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(558), + [anon_sym_ATphp] = ACTIONS(560), + [aux_sym_attribute_token1] = ACTIONS(562), + [aux_sym__inline_directive_token1] = ACTIONS(564), + [anon_sym_ATfragment] = ACTIONS(566), + [anon_sym_ATsection] = ACTIONS(568), + [anon_sym_ATonce] = ACTIONS(570), + [anon_sym_ATverbatim] = ACTIONS(572), + [anon_sym_ATpush] = ACTIONS(574), + [anon_sym_ATpushOnce] = ACTIONS(576), + [anon_sym_ATpushIf] = ACTIONS(578), + [anon_sym_ATprepend] = ACTIONS(580), + [anon_sym_ATprependOnce] = ACTIONS(582), + [anon_sym_ATelse] = ACTIONS(584), + [aux_sym_conditional_keyword_token1] = ACTIONS(586), + [anon_sym_ATif] = ACTIONS(588), + [anon_sym_ATunless] = ACTIONS(590), + [anon_sym_ATisset] = ACTIONS(592), + [anon_sym_ATendisset] = ACTIONS(297), + [anon_sym_ATempty] = ACTIONS(596), + [anon_sym_ATauth] = ACTIONS(598), + [anon_sym_ATguest] = ACTIONS(600), + [anon_sym_ATproduction] = ACTIONS(602), + [anon_sym_ATenv] = ACTIONS(604), + [anon_sym_AThasSection] = ACTIONS(606), + [anon_sym_ATsectionMissing] = ACTIONS(608), + [anon_sym_ATerror] = ACTIONS(610), + [aux_sym__custom_token1] = ACTIONS(612), + [aux_sym__custom_token2] = ACTIONS(614), + [anon_sym_ATswitch] = ACTIONS(616), + [aux_sym_loop_operator_token1] = ACTIONS(618), + [anon_sym_ATfor] = ACTIONS(620), + [anon_sym_ATforeach] = ACTIONS(622), + [anon_sym_ATforelse] = ACTIONS(624), + [anon_sym_ATwhile] = ACTIONS(626), + [anon_sym_ATpersist] = ACTIONS(628), + [anon_sym_ATteleport] = ACTIONS(630), + [anon_sym_ATvolt] = ACTIONS(632), + [aux_sym_text_token1] = ACTIONS(634), + [aux_sym_text_token2] = ACTIONS(634), + [aux_sym_text_token3] = ACTIONS(636), }, [72] = { [sym__definition] = STATE(1065), @@ -23367,49 +23768,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(627), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(642), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [73] = { [sym__definition] = STATE(634), @@ -23462,49 +23863,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(762), [aux_sym__if_statement_directive_body_repeat1] = STATE(73), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(629), - [anon_sym_LBRACE_LBRACE] = ACTIONS(632), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(635), - [anon_sym_ATphp] = ACTIONS(638), - [aux_sym_attribute_token1] = ACTIONS(641), - [aux_sym__inline_directive_token1] = ACTIONS(644), - [anon_sym_ATfragment] = ACTIONS(647), - [anon_sym_ATsection] = ACTIONS(650), - [anon_sym_ATonce] = ACTIONS(653), - [anon_sym_ATverbatim] = ACTIONS(656), - [anon_sym_ATpush] = ACTIONS(659), - [anon_sym_ATpushOnce] = ACTIONS(662), - [anon_sym_ATpushIf] = ACTIONS(665), - [anon_sym_ATprepend] = ACTIONS(668), - [anon_sym_ATprependOnce] = ACTIONS(671), - [anon_sym_ATelse] = ACTIONS(674), - [aux_sym_conditional_keyword_token1] = ACTIONS(677), - [anon_sym_ATif] = ACTIONS(680), - [anon_sym_ATunless] = ACTIONS(683), - [anon_sym_ATisset] = ACTIONS(686), - [anon_sym_ATempty] = ACTIONS(689), - [anon_sym_ATauth] = ACTIONS(692), - [anon_sym_ATguest] = ACTIONS(695), - [anon_sym_ATproduction] = ACTIONS(698), - [anon_sym_ATenv] = ACTIONS(701), - [anon_sym_AThasSection] = ACTIONS(704), - [anon_sym_ATsectionMissing] = ACTIONS(707), - [anon_sym_ATerror] = ACTIONS(710), - [anon_sym_ATenderror] = ACTIONS(471), - [aux_sym__custom_token1] = ACTIONS(713), - [aux_sym__custom_token2] = ACTIONS(716), - [anon_sym_ATswitch] = ACTIONS(719), - [aux_sym_loop_operator_token1] = ACTIONS(722), - [anon_sym_ATfor] = ACTIONS(725), - [anon_sym_ATforeach] = ACTIONS(728), - [anon_sym_ATforelse] = ACTIONS(731), - [anon_sym_ATwhile] = ACTIONS(734), - [anon_sym_ATpersist] = ACTIONS(737), - [anon_sym_ATteleport] = ACTIONS(740), - [anon_sym_ATvolt] = ACTIONS(743), - [aux_sym_text_token1] = ACTIONS(746), - [aux_sym_text_token2] = ACTIONS(746), - [aux_sym_text_token3] = ACTIONS(746), + [aux_sym_keyword_token1] = ACTIONS(644), + [anon_sym_LBRACE_LBRACE] = ACTIONS(647), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(650), + [anon_sym_ATphp] = ACTIONS(653), + [aux_sym_attribute_token1] = ACTIONS(656), + [aux_sym__inline_directive_token1] = ACTIONS(659), + [anon_sym_ATfragment] = ACTIONS(662), + [anon_sym_ATsection] = ACTIONS(665), + [anon_sym_ATonce] = ACTIONS(668), + [anon_sym_ATverbatim] = ACTIONS(671), + [anon_sym_ATpush] = ACTIONS(674), + [anon_sym_ATpushOnce] = ACTIONS(677), + [anon_sym_ATpushIf] = ACTIONS(680), + [anon_sym_ATprepend] = ACTIONS(683), + [anon_sym_ATprependOnce] = ACTIONS(686), + [anon_sym_ATelse] = ACTIONS(689), + [aux_sym_conditional_keyword_token1] = ACTIONS(692), + [anon_sym_ATif] = ACTIONS(695), + [anon_sym_ATunless] = ACTIONS(698), + [anon_sym_ATisset] = ACTIONS(701), + [anon_sym_ATempty] = ACTIONS(704), + [anon_sym_ATauth] = ACTIONS(707), + [anon_sym_ATguest] = ACTIONS(710), + [anon_sym_ATproduction] = ACTIONS(713), + [anon_sym_ATenv] = ACTIONS(716), + [anon_sym_AThasSection] = ACTIONS(719), + [anon_sym_ATsectionMissing] = ACTIONS(722), + [anon_sym_ATerror] = ACTIONS(725), + [anon_sym_ATenderror] = ACTIONS(481), + [aux_sym__custom_token1] = ACTIONS(728), + [aux_sym__custom_token2] = ACTIONS(731), + [anon_sym_ATswitch] = ACTIONS(734), + [aux_sym_loop_operator_token1] = ACTIONS(737), + [anon_sym_ATfor] = ACTIONS(740), + [anon_sym_ATforeach] = ACTIONS(743), + [anon_sym_ATforelse] = ACTIONS(746), + [anon_sym_ATwhile] = ACTIONS(749), + [anon_sym_ATpersist] = ACTIONS(752), + [anon_sym_ATteleport] = ACTIONS(755), + [anon_sym_ATvolt] = ACTIONS(758), + [aux_sym_text_token1] = ACTIONS(761), + [aux_sym_text_token2] = ACTIONS(761), + [aux_sym_text_token3] = ACTIONS(764), }, [74] = { [sym__definition] = STATE(702), @@ -23557,49 +23958,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(692), [aux_sym__if_statement_directive_body_repeat1] = STATE(74), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(749), - [anon_sym_LBRACE_LBRACE] = ACTIONS(752), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(755), - [anon_sym_ATphp] = ACTIONS(758), - [aux_sym_attribute_token1] = ACTIONS(761), - [aux_sym__inline_directive_token1] = ACTIONS(764), - [anon_sym_ATfragment] = ACTIONS(767), - [anon_sym_ATsection] = ACTIONS(770), - [anon_sym_ATonce] = ACTIONS(773), - [anon_sym_ATverbatim] = ACTIONS(776), - [anon_sym_ATpush] = ACTIONS(779), - [anon_sym_ATpushOnce] = ACTIONS(782), - [anon_sym_ATpushIf] = ACTIONS(785), - [anon_sym_ATprepend] = ACTIONS(788), - [anon_sym_ATprependOnce] = ACTIONS(791), - [anon_sym_ATelse] = ACTIONS(794), - [aux_sym_conditional_keyword_token1] = ACTIONS(797), - [anon_sym_ATif] = ACTIONS(800), - [anon_sym_ATunless] = ACTIONS(803), - [anon_sym_ATisset] = ACTIONS(806), - [anon_sym_ATempty] = ACTIONS(809), - [anon_sym_ATauth] = ACTIONS(812), - [anon_sym_ATguest] = ACTIONS(815), - [anon_sym_ATproduction] = ACTIONS(818), - [anon_sym_ATenv] = ACTIONS(821), - [anon_sym_AThasSection] = ACTIONS(824), - [anon_sym_ATsectionMissing] = ACTIONS(827), - [anon_sym_ATerror] = ACTIONS(830), - [aux_sym__custom_token1] = ACTIONS(833), - [aux_sym__custom_token2] = ACTIONS(836), - [aux_sym__custom_token3] = ACTIONS(471), - [anon_sym_ATswitch] = ACTIONS(839), - [aux_sym_loop_operator_token1] = ACTIONS(842), - [anon_sym_ATfor] = ACTIONS(845), - [anon_sym_ATforeach] = ACTIONS(848), - [anon_sym_ATforelse] = ACTIONS(851), - [anon_sym_ATwhile] = ACTIONS(854), - [anon_sym_ATpersist] = ACTIONS(857), - [anon_sym_ATteleport] = ACTIONS(860), - [anon_sym_ATvolt] = ACTIONS(863), - [aux_sym_text_token1] = ACTIONS(866), - [aux_sym_text_token2] = ACTIONS(866), - [aux_sym_text_token3] = ACTIONS(866), + [aux_sym_keyword_token1] = ACTIONS(767), + [anon_sym_LBRACE_LBRACE] = ACTIONS(770), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(773), + [anon_sym_ATphp] = ACTIONS(776), + [aux_sym_attribute_token1] = ACTIONS(779), + [aux_sym__inline_directive_token1] = ACTIONS(782), + [anon_sym_ATfragment] = ACTIONS(785), + [anon_sym_ATsection] = ACTIONS(788), + [anon_sym_ATonce] = ACTIONS(791), + [anon_sym_ATverbatim] = ACTIONS(794), + [anon_sym_ATpush] = ACTIONS(797), + [anon_sym_ATpushOnce] = ACTIONS(800), + [anon_sym_ATpushIf] = ACTIONS(803), + [anon_sym_ATprepend] = ACTIONS(806), + [anon_sym_ATprependOnce] = ACTIONS(809), + [anon_sym_ATelse] = ACTIONS(812), + [aux_sym_conditional_keyword_token1] = ACTIONS(815), + [anon_sym_ATif] = ACTIONS(818), + [anon_sym_ATunless] = ACTIONS(821), + [anon_sym_ATisset] = ACTIONS(824), + [anon_sym_ATempty] = ACTIONS(827), + [anon_sym_ATauth] = ACTIONS(830), + [anon_sym_ATguest] = ACTIONS(833), + [anon_sym_ATproduction] = ACTIONS(836), + [anon_sym_ATenv] = ACTIONS(839), + [anon_sym_AThasSection] = ACTIONS(842), + [anon_sym_ATsectionMissing] = ACTIONS(845), + [anon_sym_ATerror] = ACTIONS(848), + [aux_sym__custom_token1] = ACTIONS(851), + [aux_sym__custom_token2] = ACTIONS(854), + [aux_sym__custom_token3] = ACTIONS(481), + [anon_sym_ATswitch] = ACTIONS(857), + [aux_sym_loop_operator_token1] = ACTIONS(860), + [anon_sym_ATfor] = ACTIONS(863), + [anon_sym_ATforeach] = ACTIONS(866), + [anon_sym_ATforelse] = ACTIONS(869), + [anon_sym_ATwhile] = ACTIONS(872), + [anon_sym_ATpersist] = ACTIONS(875), + [anon_sym_ATteleport] = ACTIONS(878), + [anon_sym_ATvolt] = ACTIONS(881), + [aux_sym_text_token1] = ACTIONS(884), + [aux_sym_text_token2] = ACTIONS(884), + [aux_sym_text_token3] = ACTIONS(887), }, [75] = { [sym__definition] = STATE(1065), @@ -23652,49 +24053,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(869), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(890), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [76] = { [sym__definition] = STATE(495), @@ -23747,49 +24148,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(897), [aux_sym__if_statement_directive_body_repeat1] = STATE(96), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(249), - [anon_sym_LBRACE_LBRACE] = ACTIONS(251), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(253), - [anon_sym_ATphp] = ACTIONS(255), - [aux_sym_attribute_token1] = ACTIONS(257), - [aux_sym__inline_directive_token1] = ACTIONS(259), - [anon_sym_ATfragment] = ACTIONS(261), - [anon_sym_ATsection] = ACTIONS(263), - [anon_sym_ATonce] = ACTIONS(265), - [anon_sym_ATverbatim] = ACTIONS(267), - [anon_sym_ATpush] = ACTIONS(269), - [anon_sym_ATpushOnce] = ACTIONS(271), - [anon_sym_ATpushIf] = ACTIONS(273), - [anon_sym_ATprepend] = ACTIONS(275), - [anon_sym_ATprependOnce] = ACTIONS(277), - [anon_sym_ATelse] = ACTIONS(279), - [aux_sym_conditional_keyword_token1] = ACTIONS(281), - [anon_sym_ATif] = ACTIONS(283), - [anon_sym_ATunless] = ACTIONS(285), - [anon_sym_ATisset] = ACTIONS(287), - [anon_sym_ATempty] = ACTIONS(289), - [anon_sym_ATendempty] = ACTIONS(581), - [anon_sym_ATauth] = ACTIONS(293), - [anon_sym_ATguest] = ACTIONS(295), - [anon_sym_ATproduction] = ACTIONS(297), - [anon_sym_ATenv] = ACTIONS(299), - [anon_sym_AThasSection] = ACTIONS(301), - [anon_sym_ATsectionMissing] = ACTIONS(303), - [anon_sym_ATerror] = ACTIONS(305), - [aux_sym__custom_token1] = ACTIONS(307), - [aux_sym__custom_token2] = ACTIONS(309), - [anon_sym_ATswitch] = ACTIONS(311), - [aux_sym_loop_operator_token1] = ACTIONS(313), - [anon_sym_ATfor] = ACTIONS(315), - [anon_sym_ATforeach] = ACTIONS(317), - [anon_sym_ATforelse] = ACTIONS(319), - [anon_sym_ATwhile] = ACTIONS(321), - [anon_sym_ATpersist] = ACTIONS(323), - [anon_sym_ATteleport] = ACTIONS(325), - [anon_sym_ATvolt] = ACTIONS(327), - [aux_sym_text_token1] = ACTIONS(329), - [aux_sym_text_token2] = ACTIONS(329), - [aux_sym_text_token3] = ACTIONS(329), + [aux_sym_keyword_token1] = ACTIONS(255), + [anon_sym_LBRACE_LBRACE] = ACTIONS(257), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(259), + [anon_sym_ATphp] = ACTIONS(261), + [aux_sym_attribute_token1] = ACTIONS(263), + [aux_sym__inline_directive_token1] = ACTIONS(265), + [anon_sym_ATfragment] = ACTIONS(267), + [anon_sym_ATsection] = ACTIONS(269), + [anon_sym_ATonce] = ACTIONS(271), + [anon_sym_ATverbatim] = ACTIONS(273), + [anon_sym_ATpush] = ACTIONS(275), + [anon_sym_ATpushOnce] = ACTIONS(277), + [anon_sym_ATpushIf] = ACTIONS(279), + [anon_sym_ATprepend] = ACTIONS(281), + [anon_sym_ATprependOnce] = ACTIONS(283), + [anon_sym_ATelse] = ACTIONS(285), + [aux_sym_conditional_keyword_token1] = ACTIONS(287), + [anon_sym_ATif] = ACTIONS(289), + [anon_sym_ATunless] = ACTIONS(291), + [anon_sym_ATisset] = ACTIONS(293), + [anon_sym_ATempty] = ACTIONS(295), + [anon_sym_ATendempty] = ACTIONS(594), + [anon_sym_ATauth] = ACTIONS(299), + [anon_sym_ATguest] = ACTIONS(301), + [anon_sym_ATproduction] = ACTIONS(303), + [anon_sym_ATenv] = ACTIONS(305), + [anon_sym_AThasSection] = ACTIONS(307), + [anon_sym_ATsectionMissing] = ACTIONS(309), + [anon_sym_ATerror] = ACTIONS(311), + [aux_sym__custom_token1] = ACTIONS(313), + [aux_sym__custom_token2] = ACTIONS(315), + [anon_sym_ATswitch] = ACTIONS(317), + [aux_sym_loop_operator_token1] = ACTIONS(319), + [anon_sym_ATfor] = ACTIONS(321), + [anon_sym_ATforeach] = ACTIONS(323), + [anon_sym_ATforelse] = ACTIONS(325), + [anon_sym_ATwhile] = ACTIONS(327), + [anon_sym_ATpersist] = ACTIONS(329), + [anon_sym_ATteleport] = ACTIONS(331), + [anon_sym_ATvolt] = ACTIONS(333), + [aux_sym_text_token1] = ACTIONS(335), + [aux_sym_text_token2] = ACTIONS(335), + [aux_sym_text_token3] = ACTIONS(337), }, [77] = { [sym__definition] = STATE(712), @@ -23842,49 +24243,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1075), [aux_sym__if_statement_directive_body_repeat1] = STATE(77), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(871), - [anon_sym_LBRACE_LBRACE] = ACTIONS(874), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(877), - [anon_sym_ATphp] = ACTIONS(880), - [aux_sym_attribute_token1] = ACTIONS(883), - [aux_sym__inline_directive_token1] = ACTIONS(886), - [anon_sym_ATfragment] = ACTIONS(889), - [anon_sym_ATsection] = ACTIONS(892), - [anon_sym_ATonce] = ACTIONS(895), - [anon_sym_ATverbatim] = ACTIONS(898), - [anon_sym_ATpush] = ACTIONS(901), - [anon_sym_ATpushOnce] = ACTIONS(904), - [anon_sym_ATpushIf] = ACTIONS(907), - [anon_sym_ATprepend] = ACTIONS(910), - [anon_sym_ATprependOnce] = ACTIONS(913), - [anon_sym_ATelse] = ACTIONS(916), - [aux_sym_conditional_keyword_token1] = ACTIONS(919), - [anon_sym_ATif] = ACTIONS(922), - [anon_sym_ATunless] = ACTIONS(925), - [anon_sym_ATendunless] = ACTIONS(471), - [anon_sym_ATisset] = ACTIONS(928), - [anon_sym_ATempty] = ACTIONS(931), - [anon_sym_ATauth] = ACTIONS(934), - [anon_sym_ATguest] = ACTIONS(937), - [anon_sym_ATproduction] = ACTIONS(940), - [anon_sym_ATenv] = ACTIONS(943), - [anon_sym_AThasSection] = ACTIONS(946), - [anon_sym_ATsectionMissing] = ACTIONS(949), - [anon_sym_ATerror] = ACTIONS(952), - [aux_sym__custom_token1] = ACTIONS(955), - [aux_sym__custom_token2] = ACTIONS(958), - [anon_sym_ATswitch] = ACTIONS(961), - [aux_sym_loop_operator_token1] = ACTIONS(964), - [anon_sym_ATfor] = ACTIONS(967), - [anon_sym_ATforeach] = ACTIONS(970), - [anon_sym_ATforelse] = ACTIONS(973), - [anon_sym_ATwhile] = ACTIONS(976), - [anon_sym_ATpersist] = ACTIONS(979), - [anon_sym_ATteleport] = ACTIONS(982), - [anon_sym_ATvolt] = ACTIONS(985), - [aux_sym_text_token1] = ACTIONS(988), - [aux_sym_text_token2] = ACTIONS(988), - [aux_sym_text_token3] = ACTIONS(988), + [aux_sym_keyword_token1] = ACTIONS(892), + [anon_sym_LBRACE_LBRACE] = ACTIONS(895), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(898), + [anon_sym_ATphp] = ACTIONS(901), + [aux_sym_attribute_token1] = ACTIONS(904), + [aux_sym__inline_directive_token1] = ACTIONS(907), + [anon_sym_ATfragment] = ACTIONS(910), + [anon_sym_ATsection] = ACTIONS(913), + [anon_sym_ATonce] = ACTIONS(916), + [anon_sym_ATverbatim] = ACTIONS(919), + [anon_sym_ATpush] = ACTIONS(922), + [anon_sym_ATpushOnce] = ACTIONS(925), + [anon_sym_ATpushIf] = ACTIONS(928), + [anon_sym_ATprepend] = ACTIONS(931), + [anon_sym_ATprependOnce] = ACTIONS(934), + [anon_sym_ATelse] = ACTIONS(937), + [aux_sym_conditional_keyword_token1] = ACTIONS(940), + [anon_sym_ATif] = ACTIONS(943), + [anon_sym_ATunless] = ACTIONS(946), + [anon_sym_ATendunless] = ACTIONS(481), + [anon_sym_ATisset] = ACTIONS(949), + [anon_sym_ATempty] = ACTIONS(952), + [anon_sym_ATauth] = ACTIONS(955), + [anon_sym_ATguest] = ACTIONS(958), + [anon_sym_ATproduction] = ACTIONS(961), + [anon_sym_ATenv] = ACTIONS(964), + [anon_sym_AThasSection] = ACTIONS(967), + [anon_sym_ATsectionMissing] = ACTIONS(970), + [anon_sym_ATerror] = ACTIONS(973), + [aux_sym__custom_token1] = ACTIONS(976), + [aux_sym__custom_token2] = ACTIONS(979), + [anon_sym_ATswitch] = ACTIONS(982), + [aux_sym_loop_operator_token1] = ACTIONS(985), + [anon_sym_ATfor] = ACTIONS(988), + [anon_sym_ATforeach] = ACTIONS(991), + [anon_sym_ATforelse] = ACTIONS(994), + [anon_sym_ATwhile] = ACTIONS(997), + [anon_sym_ATpersist] = ACTIONS(1000), + [anon_sym_ATteleport] = ACTIONS(1003), + [anon_sym_ATvolt] = ACTIONS(1006), + [aux_sym_text_token1] = ACTIONS(1009), + [aux_sym_text_token2] = ACTIONS(1009), + [aux_sym_text_token3] = ACTIONS(1012), }, [78] = { [sym__definition] = STATE(1065), @@ -23937,49 +24338,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(991), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(1015), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [79] = { [sym__definition] = STATE(565), @@ -24032,49 +24433,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(829), [aux_sym__if_statement_directive_body_repeat1] = STATE(79), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(993), - [anon_sym_LBRACE_LBRACE] = ACTIONS(996), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(999), - [anon_sym_ATphp] = ACTIONS(1002), - [aux_sym_attribute_token1] = ACTIONS(1005), - [aux_sym__inline_directive_token1] = ACTIONS(1008), - [anon_sym_ATfragment] = ACTIONS(1011), - [anon_sym_ATsection] = ACTIONS(1014), - [anon_sym_ATonce] = ACTIONS(1017), - [anon_sym_ATverbatim] = ACTIONS(1020), - [anon_sym_ATpush] = ACTIONS(1023), - [anon_sym_ATpushOnce] = ACTIONS(1026), - [anon_sym_ATpushIf] = ACTIONS(1029), - [anon_sym_ATprepend] = ACTIONS(1032), - [anon_sym_ATprependOnce] = ACTIONS(1035), - [anon_sym_ATelse] = ACTIONS(1038), - [aux_sym_conditional_keyword_token1] = ACTIONS(1041), - [anon_sym_ATif] = ACTIONS(1044), - [anon_sym_ATunless] = ACTIONS(1047), - [anon_sym_ATisset] = ACTIONS(1050), - [anon_sym_ATempty] = ACTIONS(1053), - [anon_sym_ATauth] = ACTIONS(1056), - [anon_sym_ATguest] = ACTIONS(1059), - [anon_sym_ATproduction] = ACTIONS(1062), - [anon_sym_ATenv] = ACTIONS(1065), - [anon_sym_ATendenv] = ACTIONS(471), - [anon_sym_AThasSection] = ACTIONS(1068), - [anon_sym_ATsectionMissing] = ACTIONS(1071), - [anon_sym_ATerror] = ACTIONS(1074), - [aux_sym__custom_token1] = ACTIONS(1077), - [aux_sym__custom_token2] = ACTIONS(1080), - [anon_sym_ATswitch] = ACTIONS(1083), - [aux_sym_loop_operator_token1] = ACTIONS(1086), - [anon_sym_ATfor] = ACTIONS(1089), - [anon_sym_ATforeach] = ACTIONS(1092), - [anon_sym_ATforelse] = ACTIONS(1095), - [anon_sym_ATwhile] = ACTIONS(1098), - [anon_sym_ATpersist] = ACTIONS(1101), - [anon_sym_ATteleport] = ACTIONS(1104), - [anon_sym_ATvolt] = ACTIONS(1107), - [aux_sym_text_token1] = ACTIONS(1110), - [aux_sym_text_token2] = ACTIONS(1110), - [aux_sym_text_token3] = ACTIONS(1110), + [aux_sym_keyword_token1] = ACTIONS(1017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1020), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1023), + [anon_sym_ATphp] = ACTIONS(1026), + [aux_sym_attribute_token1] = ACTIONS(1029), + [aux_sym__inline_directive_token1] = ACTIONS(1032), + [anon_sym_ATfragment] = ACTIONS(1035), + [anon_sym_ATsection] = ACTIONS(1038), + [anon_sym_ATonce] = ACTIONS(1041), + [anon_sym_ATverbatim] = ACTIONS(1044), + [anon_sym_ATpush] = ACTIONS(1047), + [anon_sym_ATpushOnce] = ACTIONS(1050), + [anon_sym_ATpushIf] = ACTIONS(1053), + [anon_sym_ATprepend] = ACTIONS(1056), + [anon_sym_ATprependOnce] = ACTIONS(1059), + [anon_sym_ATelse] = ACTIONS(1062), + [aux_sym_conditional_keyword_token1] = ACTIONS(1065), + [anon_sym_ATif] = ACTIONS(1068), + [anon_sym_ATunless] = ACTIONS(1071), + [anon_sym_ATisset] = ACTIONS(1074), + [anon_sym_ATempty] = ACTIONS(1077), + [anon_sym_ATauth] = ACTIONS(1080), + [anon_sym_ATguest] = ACTIONS(1083), + [anon_sym_ATproduction] = ACTIONS(1086), + [anon_sym_ATenv] = ACTIONS(1089), + [anon_sym_ATendenv] = ACTIONS(481), + [anon_sym_AThasSection] = ACTIONS(1092), + [anon_sym_ATsectionMissing] = ACTIONS(1095), + [anon_sym_ATerror] = ACTIONS(1098), + [aux_sym__custom_token1] = ACTIONS(1101), + [aux_sym__custom_token2] = ACTIONS(1104), + [anon_sym_ATswitch] = ACTIONS(1107), + [aux_sym_loop_operator_token1] = ACTIONS(1110), + [anon_sym_ATfor] = ACTIONS(1113), + [anon_sym_ATforeach] = ACTIONS(1116), + [anon_sym_ATforelse] = ACTIONS(1119), + [anon_sym_ATwhile] = ACTIONS(1122), + [anon_sym_ATpersist] = ACTIONS(1125), + [anon_sym_ATteleport] = ACTIONS(1128), + [anon_sym_ATvolt] = ACTIONS(1131), + [aux_sym_text_token1] = ACTIONS(1134), + [aux_sym_text_token2] = ACTIONS(1134), + [aux_sym_text_token3] = ACTIONS(1137), }, [80] = { [sym__definition] = STATE(1002), @@ -24127,49 +24528,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1012), [aux_sym__if_statement_directive_body_repeat1] = STATE(101), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(1113), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1115), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1117), - [anon_sym_ATphp] = ACTIONS(1119), - [aux_sym_attribute_token1] = ACTIONS(1121), - [aux_sym__inline_directive_token1] = ACTIONS(1123), - [anon_sym_ATfragment] = ACTIONS(1125), - [anon_sym_ATsection] = ACTIONS(1127), - [anon_sym_ATonce] = ACTIONS(1129), - [anon_sym_ATverbatim] = ACTIONS(1131), - [anon_sym_ATpush] = ACTIONS(1133), - [anon_sym_ATpushOnce] = ACTIONS(1135), - [anon_sym_ATpushIf] = ACTIONS(1137), - [anon_sym_ATprepend] = ACTIONS(1139), - [anon_sym_ATprependOnce] = ACTIONS(1141), - [anon_sym_ATelse] = ACTIONS(1143), - [aux_sym_conditional_keyword_token1] = ACTIONS(1145), - [anon_sym_ATif] = ACTIONS(1147), - [anon_sym_ATendif] = ACTIONS(291), - [anon_sym_ATunless] = ACTIONS(1149), - [anon_sym_ATisset] = ACTIONS(1151), - [anon_sym_ATempty] = ACTIONS(1153), - [anon_sym_ATauth] = ACTIONS(1155), - [anon_sym_ATguest] = ACTIONS(1157), - [anon_sym_ATproduction] = ACTIONS(1159), - [anon_sym_ATenv] = ACTIONS(1161), - [anon_sym_AThasSection] = ACTIONS(1163), - [anon_sym_ATsectionMissing] = ACTIONS(1165), - [anon_sym_ATerror] = ACTIONS(1167), - [aux_sym__custom_token1] = ACTIONS(1169), - [aux_sym__custom_token2] = ACTIONS(1171), - [anon_sym_ATswitch] = ACTIONS(1173), - [aux_sym_loop_operator_token1] = ACTIONS(1175), - [anon_sym_ATfor] = ACTIONS(1177), - [anon_sym_ATforeach] = ACTIONS(1179), - [anon_sym_ATforelse] = ACTIONS(1181), - [anon_sym_ATwhile] = ACTIONS(1183), - [anon_sym_ATpersist] = ACTIONS(1185), - [anon_sym_ATteleport] = ACTIONS(1187), - [anon_sym_ATvolt] = ACTIONS(1189), - [aux_sym_text_token1] = ACTIONS(1191), - [aux_sym_text_token2] = ACTIONS(1191), - [aux_sym_text_token3] = ACTIONS(1191), + [aux_sym_keyword_token1] = ACTIONS(1140), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1142), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1144), + [anon_sym_ATphp] = ACTIONS(1146), + [aux_sym_attribute_token1] = ACTIONS(1148), + [aux_sym__inline_directive_token1] = ACTIONS(1150), + [anon_sym_ATfragment] = ACTIONS(1152), + [anon_sym_ATsection] = ACTIONS(1154), + [anon_sym_ATonce] = ACTIONS(1156), + [anon_sym_ATverbatim] = ACTIONS(1158), + [anon_sym_ATpush] = ACTIONS(1160), + [anon_sym_ATpushOnce] = ACTIONS(1162), + [anon_sym_ATpushIf] = ACTIONS(1164), + [anon_sym_ATprepend] = ACTIONS(1166), + [anon_sym_ATprependOnce] = ACTIONS(1168), + [anon_sym_ATelse] = ACTIONS(1170), + [aux_sym_conditional_keyword_token1] = ACTIONS(1172), + [anon_sym_ATif] = ACTIONS(1174), + [anon_sym_ATendif] = ACTIONS(297), + [anon_sym_ATunless] = ACTIONS(1176), + [anon_sym_ATisset] = ACTIONS(1178), + [anon_sym_ATempty] = ACTIONS(1180), + [anon_sym_ATauth] = ACTIONS(1182), + [anon_sym_ATguest] = ACTIONS(1184), + [anon_sym_ATproduction] = ACTIONS(1186), + [anon_sym_ATenv] = ACTIONS(1188), + [anon_sym_AThasSection] = ACTIONS(1190), + [anon_sym_ATsectionMissing] = ACTIONS(1192), + [anon_sym_ATerror] = ACTIONS(1194), + [aux_sym__custom_token1] = ACTIONS(1196), + [aux_sym__custom_token2] = ACTIONS(1198), + [anon_sym_ATswitch] = ACTIONS(1200), + [aux_sym_loop_operator_token1] = ACTIONS(1202), + [anon_sym_ATfor] = ACTIONS(1204), + [anon_sym_ATforeach] = ACTIONS(1206), + [anon_sym_ATforelse] = ACTIONS(1208), + [anon_sym_ATwhile] = ACTIONS(1210), + [anon_sym_ATpersist] = ACTIONS(1212), + [anon_sym_ATteleport] = ACTIONS(1214), + [anon_sym_ATvolt] = ACTIONS(1216), + [aux_sym_text_token1] = ACTIONS(1218), + [aux_sym_text_token2] = ACTIONS(1218), + [aux_sym_text_token3] = ACTIONS(1220), }, [81] = { [sym__definition] = STATE(565), @@ -24222,49 +24623,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(829), [aux_sym__if_statement_directive_body_repeat1] = STATE(83), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(1193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1195), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1197), - [anon_sym_ATphp] = ACTIONS(1199), - [aux_sym_attribute_token1] = ACTIONS(1201), - [aux_sym__inline_directive_token1] = ACTIONS(1203), - [anon_sym_ATfragment] = ACTIONS(1205), - [anon_sym_ATsection] = ACTIONS(1207), - [anon_sym_ATonce] = ACTIONS(1209), - [anon_sym_ATverbatim] = ACTIONS(1211), - [anon_sym_ATpush] = ACTIONS(1213), - [anon_sym_ATpushOnce] = ACTIONS(1215), - [anon_sym_ATpushIf] = ACTIONS(1217), - [anon_sym_ATprepend] = ACTIONS(1219), - [anon_sym_ATprependOnce] = ACTIONS(1221), - [anon_sym_ATelse] = ACTIONS(1223), - [aux_sym_conditional_keyword_token1] = ACTIONS(1225), - [anon_sym_ATif] = ACTIONS(1227), - [anon_sym_ATunless] = ACTIONS(1229), - [anon_sym_ATisset] = ACTIONS(1231), - [anon_sym_ATempty] = ACTIONS(1233), - [anon_sym_ATauth] = ACTIONS(1235), - [anon_sym_ATguest] = ACTIONS(1237), - [anon_sym_ATproduction] = ACTIONS(1239), - [anon_sym_ATenv] = ACTIONS(1241), - [anon_sym_ATendenv] = ACTIONS(291), - [anon_sym_AThasSection] = ACTIONS(1243), - [anon_sym_ATsectionMissing] = ACTIONS(1245), - [anon_sym_ATerror] = ACTIONS(1247), - [aux_sym__custom_token1] = ACTIONS(1249), - [aux_sym__custom_token2] = ACTIONS(1251), - [anon_sym_ATswitch] = ACTIONS(1253), - [aux_sym_loop_operator_token1] = ACTIONS(1255), - [anon_sym_ATfor] = ACTIONS(1257), - [anon_sym_ATforeach] = ACTIONS(1259), - [anon_sym_ATforelse] = ACTIONS(1261), - [anon_sym_ATwhile] = ACTIONS(1263), - [anon_sym_ATpersist] = ACTIONS(1265), - [anon_sym_ATteleport] = ACTIONS(1267), - [anon_sym_ATvolt] = ACTIONS(1269), - [aux_sym_text_token1] = ACTIONS(1271), - [aux_sym_text_token2] = ACTIONS(1271), - [aux_sym_text_token3] = ACTIONS(1271), + [aux_sym_keyword_token1] = ACTIONS(1222), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1224), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1226), + [anon_sym_ATphp] = ACTIONS(1228), + [aux_sym_attribute_token1] = ACTIONS(1230), + [aux_sym__inline_directive_token1] = ACTIONS(1232), + [anon_sym_ATfragment] = ACTIONS(1234), + [anon_sym_ATsection] = ACTIONS(1236), + [anon_sym_ATonce] = ACTIONS(1238), + [anon_sym_ATverbatim] = ACTIONS(1240), + [anon_sym_ATpush] = ACTIONS(1242), + [anon_sym_ATpushOnce] = ACTIONS(1244), + [anon_sym_ATpushIf] = ACTIONS(1246), + [anon_sym_ATprepend] = ACTIONS(1248), + [anon_sym_ATprependOnce] = ACTIONS(1250), + [anon_sym_ATelse] = ACTIONS(1252), + [aux_sym_conditional_keyword_token1] = ACTIONS(1254), + [anon_sym_ATif] = ACTIONS(1256), + [anon_sym_ATunless] = ACTIONS(1258), + [anon_sym_ATisset] = ACTIONS(1260), + [anon_sym_ATempty] = ACTIONS(1262), + [anon_sym_ATauth] = ACTIONS(1264), + [anon_sym_ATguest] = ACTIONS(1266), + [anon_sym_ATproduction] = ACTIONS(1268), + [anon_sym_ATenv] = ACTIONS(1270), + [anon_sym_ATendenv] = ACTIONS(297), + [anon_sym_AThasSection] = ACTIONS(1272), + [anon_sym_ATsectionMissing] = ACTIONS(1274), + [anon_sym_ATerror] = ACTIONS(1276), + [aux_sym__custom_token1] = ACTIONS(1278), + [aux_sym__custom_token2] = ACTIONS(1280), + [anon_sym_ATswitch] = ACTIONS(1282), + [aux_sym_loop_operator_token1] = ACTIONS(1284), + [anon_sym_ATfor] = ACTIONS(1286), + [anon_sym_ATforeach] = ACTIONS(1288), + [anon_sym_ATforelse] = ACTIONS(1290), + [anon_sym_ATwhile] = ACTIONS(1292), + [anon_sym_ATpersist] = ACTIONS(1294), + [anon_sym_ATteleport] = ACTIONS(1296), + [anon_sym_ATvolt] = ACTIONS(1298), + [aux_sym_text_token1] = ACTIONS(1300), + [aux_sym_text_token2] = ACTIONS(1300), + [aux_sym_text_token3] = ACTIONS(1302), }, [82] = { [sym__definition] = STATE(1065), @@ -24317,49 +24718,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(1273), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(1304), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [83] = { [sym__definition] = STATE(565), @@ -24412,49 +24813,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(829), [aux_sym__if_statement_directive_body_repeat1] = STATE(79), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(1193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1195), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1197), - [anon_sym_ATphp] = ACTIONS(1199), - [aux_sym_attribute_token1] = ACTIONS(1201), - [aux_sym__inline_directive_token1] = ACTIONS(1203), - [anon_sym_ATfragment] = ACTIONS(1205), - [anon_sym_ATsection] = ACTIONS(1207), - [anon_sym_ATonce] = ACTIONS(1209), - [anon_sym_ATverbatim] = ACTIONS(1211), - [anon_sym_ATpush] = ACTIONS(1213), - [anon_sym_ATpushOnce] = ACTIONS(1215), - [anon_sym_ATpushIf] = ACTIONS(1217), - [anon_sym_ATprepend] = ACTIONS(1219), - [anon_sym_ATprependOnce] = ACTIONS(1221), - [anon_sym_ATelse] = ACTIONS(1223), - [aux_sym_conditional_keyword_token1] = ACTIONS(1225), - [anon_sym_ATif] = ACTIONS(1227), - [anon_sym_ATunless] = ACTIONS(1229), - [anon_sym_ATisset] = ACTIONS(1231), - [anon_sym_ATempty] = ACTIONS(1233), - [anon_sym_ATauth] = ACTIONS(1235), - [anon_sym_ATguest] = ACTIONS(1237), - [anon_sym_ATproduction] = ACTIONS(1239), - [anon_sym_ATenv] = ACTIONS(1241), - [anon_sym_ATendenv] = ACTIONS(581), - [anon_sym_AThasSection] = ACTIONS(1243), - [anon_sym_ATsectionMissing] = ACTIONS(1245), - [anon_sym_ATerror] = ACTIONS(1247), - [aux_sym__custom_token1] = ACTIONS(1249), - [aux_sym__custom_token2] = ACTIONS(1251), - [anon_sym_ATswitch] = ACTIONS(1253), - [aux_sym_loop_operator_token1] = ACTIONS(1255), - [anon_sym_ATfor] = ACTIONS(1257), - [anon_sym_ATforeach] = ACTIONS(1259), - [anon_sym_ATforelse] = ACTIONS(1261), - [anon_sym_ATwhile] = ACTIONS(1263), - [anon_sym_ATpersist] = ACTIONS(1265), - [anon_sym_ATteleport] = ACTIONS(1267), - [anon_sym_ATvolt] = ACTIONS(1269), - [aux_sym_text_token1] = ACTIONS(1271), - [aux_sym_text_token2] = ACTIONS(1271), - [aux_sym_text_token3] = ACTIONS(1271), + [aux_sym_keyword_token1] = ACTIONS(1222), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1224), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1226), + [anon_sym_ATphp] = ACTIONS(1228), + [aux_sym_attribute_token1] = ACTIONS(1230), + [aux_sym__inline_directive_token1] = ACTIONS(1232), + [anon_sym_ATfragment] = ACTIONS(1234), + [anon_sym_ATsection] = ACTIONS(1236), + [anon_sym_ATonce] = ACTIONS(1238), + [anon_sym_ATverbatim] = ACTIONS(1240), + [anon_sym_ATpush] = ACTIONS(1242), + [anon_sym_ATpushOnce] = ACTIONS(1244), + [anon_sym_ATpushIf] = ACTIONS(1246), + [anon_sym_ATprepend] = ACTIONS(1248), + [anon_sym_ATprependOnce] = ACTIONS(1250), + [anon_sym_ATelse] = ACTIONS(1252), + [aux_sym_conditional_keyword_token1] = ACTIONS(1254), + [anon_sym_ATif] = ACTIONS(1256), + [anon_sym_ATunless] = ACTIONS(1258), + [anon_sym_ATisset] = ACTIONS(1260), + [anon_sym_ATempty] = ACTIONS(1262), + [anon_sym_ATauth] = ACTIONS(1264), + [anon_sym_ATguest] = ACTIONS(1266), + [anon_sym_ATproduction] = ACTIONS(1268), + [anon_sym_ATenv] = ACTIONS(1270), + [anon_sym_ATendenv] = ACTIONS(594), + [anon_sym_AThasSection] = ACTIONS(1272), + [anon_sym_ATsectionMissing] = ACTIONS(1274), + [anon_sym_ATerror] = ACTIONS(1276), + [aux_sym__custom_token1] = ACTIONS(1278), + [aux_sym__custom_token2] = ACTIONS(1280), + [anon_sym_ATswitch] = ACTIONS(1282), + [aux_sym_loop_operator_token1] = ACTIONS(1284), + [anon_sym_ATfor] = ACTIONS(1286), + [anon_sym_ATforeach] = ACTIONS(1288), + [anon_sym_ATforelse] = ACTIONS(1290), + [anon_sym_ATwhile] = ACTIONS(1292), + [anon_sym_ATpersist] = ACTIONS(1294), + [anon_sym_ATteleport] = ACTIONS(1296), + [anon_sym_ATvolt] = ACTIONS(1298), + [aux_sym_text_token1] = ACTIONS(1300), + [aux_sym_text_token2] = ACTIONS(1300), + [aux_sym_text_token3] = ACTIONS(1302), }, [84] = { [sym__definition] = STATE(1065), @@ -24507,49 +24908,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(1275), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(1306), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [85] = { [sym__definition] = STATE(1065), @@ -24602,49 +25003,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(1277), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(1308), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [86] = { [sym__definition] = STATE(1065), @@ -24697,49 +25098,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(1279), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(1310), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [87] = { [sym__definition] = STATE(580), @@ -24792,49 +25193,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(964), [aux_sym__if_statement_directive_body_repeat1] = STATE(87), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(1281), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1287), - [anon_sym_ATphp] = ACTIONS(1290), - [aux_sym_attribute_token1] = ACTIONS(1293), - [aux_sym__inline_directive_token1] = ACTIONS(1296), - [anon_sym_ATfragment] = ACTIONS(1299), - [anon_sym_ATsection] = ACTIONS(1302), - [anon_sym_ATonce] = ACTIONS(1305), - [anon_sym_ATverbatim] = ACTIONS(1308), - [anon_sym_ATpush] = ACTIONS(1311), - [anon_sym_ATpushOnce] = ACTIONS(1314), - [anon_sym_ATpushIf] = ACTIONS(1317), - [anon_sym_ATprepend] = ACTIONS(1320), - [anon_sym_ATprependOnce] = ACTIONS(1323), - [anon_sym_ATelse] = ACTIONS(1326), - [aux_sym_conditional_keyword_token1] = ACTIONS(1329), - [anon_sym_ATif] = ACTIONS(1332), - [anon_sym_ATunless] = ACTIONS(1335), - [anon_sym_ATisset] = ACTIONS(1338), - [anon_sym_ATendisset] = ACTIONS(471), - [anon_sym_ATempty] = ACTIONS(1341), - [anon_sym_ATauth] = ACTIONS(1344), - [anon_sym_ATguest] = ACTIONS(1347), - [anon_sym_ATproduction] = ACTIONS(1350), - [anon_sym_ATenv] = ACTIONS(1353), - [anon_sym_AThasSection] = ACTIONS(1356), - [anon_sym_ATsectionMissing] = ACTIONS(1359), - [anon_sym_ATerror] = ACTIONS(1362), - [aux_sym__custom_token1] = ACTIONS(1365), - [aux_sym__custom_token2] = ACTIONS(1368), - [anon_sym_ATswitch] = ACTIONS(1371), - [aux_sym_loop_operator_token1] = ACTIONS(1374), - [anon_sym_ATfor] = ACTIONS(1377), - [anon_sym_ATforeach] = ACTIONS(1380), - [anon_sym_ATforelse] = ACTIONS(1383), - [anon_sym_ATwhile] = ACTIONS(1386), - [anon_sym_ATpersist] = ACTIONS(1389), - [anon_sym_ATteleport] = ACTIONS(1392), - [anon_sym_ATvolt] = ACTIONS(1395), - [aux_sym_text_token1] = ACTIONS(1398), - [aux_sym_text_token2] = ACTIONS(1398), - [aux_sym_text_token3] = ACTIONS(1398), + [aux_sym_keyword_token1] = ACTIONS(1312), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1315), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1318), + [anon_sym_ATphp] = ACTIONS(1321), + [aux_sym_attribute_token1] = ACTIONS(1324), + [aux_sym__inline_directive_token1] = ACTIONS(1327), + [anon_sym_ATfragment] = ACTIONS(1330), + [anon_sym_ATsection] = ACTIONS(1333), + [anon_sym_ATonce] = ACTIONS(1336), + [anon_sym_ATverbatim] = ACTIONS(1339), + [anon_sym_ATpush] = ACTIONS(1342), + [anon_sym_ATpushOnce] = ACTIONS(1345), + [anon_sym_ATpushIf] = ACTIONS(1348), + [anon_sym_ATprepend] = ACTIONS(1351), + [anon_sym_ATprependOnce] = ACTIONS(1354), + [anon_sym_ATelse] = ACTIONS(1357), + [aux_sym_conditional_keyword_token1] = ACTIONS(1360), + [anon_sym_ATif] = ACTIONS(1363), + [anon_sym_ATunless] = ACTIONS(1366), + [anon_sym_ATisset] = ACTIONS(1369), + [anon_sym_ATendisset] = ACTIONS(481), + [anon_sym_ATempty] = ACTIONS(1372), + [anon_sym_ATauth] = ACTIONS(1375), + [anon_sym_ATguest] = ACTIONS(1378), + [anon_sym_ATproduction] = ACTIONS(1381), + [anon_sym_ATenv] = ACTIONS(1384), + [anon_sym_AThasSection] = ACTIONS(1387), + [anon_sym_ATsectionMissing] = ACTIONS(1390), + [anon_sym_ATerror] = ACTIONS(1393), + [aux_sym__custom_token1] = ACTIONS(1396), + [aux_sym__custom_token2] = ACTIONS(1399), + [anon_sym_ATswitch] = ACTIONS(1402), + [aux_sym_loop_operator_token1] = ACTIONS(1405), + [anon_sym_ATfor] = ACTIONS(1408), + [anon_sym_ATforeach] = ACTIONS(1411), + [anon_sym_ATforelse] = ACTIONS(1414), + [anon_sym_ATwhile] = ACTIONS(1417), + [anon_sym_ATpersist] = ACTIONS(1420), + [anon_sym_ATteleport] = ACTIONS(1423), + [anon_sym_ATvolt] = ACTIONS(1426), + [aux_sym_text_token1] = ACTIONS(1429), + [aux_sym_text_token2] = ACTIONS(1429), + [aux_sym_text_token3] = ACTIONS(1432), }, [88] = { [sym__definition] = STATE(1065), @@ -24887,49 +25288,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(1401), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(1435), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [89] = { [sym__definition] = STATE(1064), @@ -24982,49 +25383,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(95), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATendauth] = ACTIONS(247), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATendauth] = ACTIONS(253), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [90] = { [sym__definition] = STATE(702), @@ -25077,49 +25478,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(692), [aux_sym__if_statement_directive_body_repeat1] = STATE(74), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(1403), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1405), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1407), - [anon_sym_ATphp] = ACTIONS(1409), - [aux_sym_attribute_token1] = ACTIONS(1411), - [aux_sym__inline_directive_token1] = ACTIONS(1413), - [anon_sym_ATfragment] = ACTIONS(1415), - [anon_sym_ATsection] = ACTIONS(1417), - [anon_sym_ATonce] = ACTIONS(1419), - [anon_sym_ATverbatim] = ACTIONS(1421), - [anon_sym_ATpush] = ACTIONS(1423), - [anon_sym_ATpushOnce] = ACTIONS(1425), - [anon_sym_ATpushIf] = ACTIONS(1427), - [anon_sym_ATprepend] = ACTIONS(1429), - [anon_sym_ATprependOnce] = ACTIONS(1431), - [anon_sym_ATelse] = ACTIONS(1433), - [aux_sym_conditional_keyword_token1] = ACTIONS(1435), - [anon_sym_ATif] = ACTIONS(1437), - [anon_sym_ATunless] = ACTIONS(1439), - [anon_sym_ATisset] = ACTIONS(1441), - [anon_sym_ATempty] = ACTIONS(1443), - [anon_sym_ATauth] = ACTIONS(1445), - [anon_sym_ATguest] = ACTIONS(1447), - [anon_sym_ATproduction] = ACTIONS(1449), - [anon_sym_ATenv] = ACTIONS(1451), - [anon_sym_AThasSection] = ACTIONS(1453), - [anon_sym_ATsectionMissing] = ACTIONS(1455), - [anon_sym_ATerror] = ACTIONS(1457), - [aux_sym__custom_token1] = ACTIONS(1459), - [aux_sym__custom_token2] = ACTIONS(1461), - [aux_sym__custom_token3] = ACTIONS(581), - [anon_sym_ATswitch] = ACTIONS(1463), - [aux_sym_loop_operator_token1] = ACTIONS(1465), - [anon_sym_ATfor] = ACTIONS(1467), - [anon_sym_ATforeach] = ACTIONS(1469), - [anon_sym_ATforelse] = ACTIONS(1471), - [anon_sym_ATwhile] = ACTIONS(1473), - [anon_sym_ATpersist] = ACTIONS(1475), - [anon_sym_ATteleport] = ACTIONS(1477), - [anon_sym_ATvolt] = ACTIONS(1479), - [aux_sym_text_token1] = ACTIONS(1481), - [aux_sym_text_token2] = ACTIONS(1481), - [aux_sym_text_token3] = ACTIONS(1481), + [aux_sym_keyword_token1] = ACTIONS(1437), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1439), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1441), + [anon_sym_ATphp] = ACTIONS(1443), + [aux_sym_attribute_token1] = ACTIONS(1445), + [aux_sym__inline_directive_token1] = ACTIONS(1447), + [anon_sym_ATfragment] = ACTIONS(1449), + [anon_sym_ATsection] = ACTIONS(1451), + [anon_sym_ATonce] = ACTIONS(1453), + [anon_sym_ATverbatim] = ACTIONS(1455), + [anon_sym_ATpush] = ACTIONS(1457), + [anon_sym_ATpushOnce] = ACTIONS(1459), + [anon_sym_ATpushIf] = ACTIONS(1461), + [anon_sym_ATprepend] = ACTIONS(1463), + [anon_sym_ATprependOnce] = ACTIONS(1465), + [anon_sym_ATelse] = ACTIONS(1467), + [aux_sym_conditional_keyword_token1] = ACTIONS(1469), + [anon_sym_ATif] = ACTIONS(1471), + [anon_sym_ATunless] = ACTIONS(1473), + [anon_sym_ATisset] = ACTIONS(1475), + [anon_sym_ATempty] = ACTIONS(1477), + [anon_sym_ATauth] = ACTIONS(1479), + [anon_sym_ATguest] = ACTIONS(1481), + [anon_sym_ATproduction] = ACTIONS(1483), + [anon_sym_ATenv] = ACTIONS(1485), + [anon_sym_AThasSection] = ACTIONS(1487), + [anon_sym_ATsectionMissing] = ACTIONS(1489), + [anon_sym_ATerror] = ACTIONS(1491), + [aux_sym__custom_token1] = ACTIONS(1493), + [aux_sym__custom_token2] = ACTIONS(1495), + [aux_sym__custom_token3] = ACTIONS(594), + [anon_sym_ATswitch] = ACTIONS(1497), + [aux_sym_loop_operator_token1] = ACTIONS(1499), + [anon_sym_ATfor] = ACTIONS(1501), + [anon_sym_ATforeach] = ACTIONS(1503), + [anon_sym_ATforelse] = ACTIONS(1505), + [anon_sym_ATwhile] = ACTIONS(1507), + [anon_sym_ATpersist] = ACTIONS(1509), + [anon_sym_ATteleport] = ACTIONS(1511), + [anon_sym_ATvolt] = ACTIONS(1513), + [aux_sym_text_token1] = ACTIONS(1515), + [aux_sym_text_token2] = ACTIONS(1515), + [aux_sym_text_token3] = ACTIONS(1517), }, [91] = { [sym__definition] = STATE(1065), @@ -25172,49 +25573,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(1483), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1486), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1489), - [anon_sym_ATphp] = ACTIONS(1492), - [aux_sym_attribute_token1] = ACTIONS(1495), - [aux_sym__inline_directive_token1] = ACTIONS(1498), - [anon_sym_ATfragment] = ACTIONS(1501), - [anon_sym_ATsection] = ACTIONS(1504), - [anon_sym_ATonce] = ACTIONS(1507), - [anon_sym_ATverbatim] = ACTIONS(1510), - [anon_sym_ATpush] = ACTIONS(1513), - [anon_sym_ATpushOnce] = ACTIONS(1516), - [anon_sym_ATpushIf] = ACTIONS(1519), - [anon_sym_ATprepend] = ACTIONS(1522), - [anon_sym_ATprependOnce] = ACTIONS(1525), - [anon_sym_ATelse] = ACTIONS(1528), - [aux_sym_conditional_keyword_token1] = ACTIONS(1531), - [anon_sym_ATif] = ACTIONS(1534), - [anon_sym_ATunless] = ACTIONS(1537), - [anon_sym_ATisset] = ACTIONS(1540), - [anon_sym_ATempty] = ACTIONS(1543), - [anon_sym_ATauth] = ACTIONS(1546), - [anon_sym_ATguest] = ACTIONS(1549), - [anon_sym_ATproduction] = ACTIONS(1552), - [anon_sym_ATendproduction] = ACTIONS(1555), - [anon_sym_ATenv] = ACTIONS(1557), - [anon_sym_AThasSection] = ACTIONS(1560), - [anon_sym_ATsectionMissing] = ACTIONS(1563), - [anon_sym_ATerror] = ACTIONS(1566), - [aux_sym__custom_token1] = ACTIONS(1569), - [aux_sym__custom_token2] = ACTIONS(1572), - [anon_sym_ATswitch] = ACTIONS(1575), - [aux_sym_loop_operator_token1] = ACTIONS(1578), - [anon_sym_ATfor] = ACTIONS(1581), - [anon_sym_ATforeach] = ACTIONS(1584), - [anon_sym_ATforelse] = ACTIONS(1587), - [anon_sym_ATwhile] = ACTIONS(1590), - [anon_sym_ATpersist] = ACTIONS(1593), - [anon_sym_ATteleport] = ACTIONS(1596), - [anon_sym_ATvolt] = ACTIONS(1599), - [aux_sym_text_token1] = ACTIONS(1602), - [aux_sym_text_token2] = ACTIONS(1602), - [aux_sym_text_token3] = ACTIONS(1602), + [aux_sym_keyword_token1] = ACTIONS(1519), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1522), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1525), + [anon_sym_ATphp] = ACTIONS(1528), + [aux_sym_attribute_token1] = ACTIONS(1531), + [aux_sym__inline_directive_token1] = ACTIONS(1534), + [anon_sym_ATfragment] = ACTIONS(1537), + [anon_sym_ATsection] = ACTIONS(1540), + [anon_sym_ATonce] = ACTIONS(1543), + [anon_sym_ATverbatim] = ACTIONS(1546), + [anon_sym_ATpush] = ACTIONS(1549), + [anon_sym_ATpushOnce] = ACTIONS(1552), + [anon_sym_ATpushIf] = ACTIONS(1555), + [anon_sym_ATprepend] = ACTIONS(1558), + [anon_sym_ATprependOnce] = ACTIONS(1561), + [anon_sym_ATelse] = ACTIONS(1564), + [aux_sym_conditional_keyword_token1] = ACTIONS(1567), + [anon_sym_ATif] = ACTIONS(1570), + [anon_sym_ATunless] = ACTIONS(1573), + [anon_sym_ATisset] = ACTIONS(1576), + [anon_sym_ATempty] = ACTIONS(1579), + [anon_sym_ATauth] = ACTIONS(1582), + [anon_sym_ATguest] = ACTIONS(1585), + [anon_sym_ATproduction] = ACTIONS(1588), + [anon_sym_ATendproduction] = ACTIONS(1591), + [anon_sym_ATenv] = ACTIONS(1593), + [anon_sym_AThasSection] = ACTIONS(1596), + [anon_sym_ATsectionMissing] = ACTIONS(1599), + [anon_sym_ATerror] = ACTIONS(1602), + [aux_sym__custom_token1] = ACTIONS(1605), + [aux_sym__custom_token2] = ACTIONS(1608), + [anon_sym_ATswitch] = ACTIONS(1611), + [aux_sym_loop_operator_token1] = ACTIONS(1614), + [anon_sym_ATfor] = ACTIONS(1617), + [anon_sym_ATforeach] = ACTIONS(1620), + [anon_sym_ATforelse] = ACTIONS(1623), + [anon_sym_ATwhile] = ACTIONS(1626), + [anon_sym_ATpersist] = ACTIONS(1629), + [anon_sym_ATteleport] = ACTIONS(1632), + [anon_sym_ATvolt] = ACTIONS(1635), + [aux_sym_text_token1] = ACTIONS(1638), + [aux_sym_text_token2] = ACTIONS(1638), + [aux_sym_text_token3] = ACTIONS(1641), }, [92] = { [sym__definition] = STATE(1065), @@ -25267,49 +25668,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(1605), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(1644), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [93] = { [sym__definition] = STATE(634), @@ -25362,49 +25763,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(762), [aux_sym__if_statement_directive_body_repeat1] = STATE(94), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(1607), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1609), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1611), - [anon_sym_ATphp] = ACTIONS(1613), - [aux_sym_attribute_token1] = ACTIONS(1615), - [aux_sym__inline_directive_token1] = ACTIONS(1617), - [anon_sym_ATfragment] = ACTIONS(1619), - [anon_sym_ATsection] = ACTIONS(1621), - [anon_sym_ATonce] = ACTIONS(1623), - [anon_sym_ATverbatim] = ACTIONS(1625), - [anon_sym_ATpush] = ACTIONS(1627), - [anon_sym_ATpushOnce] = ACTIONS(1629), - [anon_sym_ATpushIf] = ACTIONS(1631), - [anon_sym_ATprepend] = ACTIONS(1633), - [anon_sym_ATprependOnce] = ACTIONS(1635), - [anon_sym_ATelse] = ACTIONS(1637), - [aux_sym_conditional_keyword_token1] = ACTIONS(1639), - [anon_sym_ATif] = ACTIONS(1641), - [anon_sym_ATunless] = ACTIONS(1643), - [anon_sym_ATisset] = ACTIONS(1645), - [anon_sym_ATempty] = ACTIONS(1647), - [anon_sym_ATauth] = ACTIONS(1649), - [anon_sym_ATguest] = ACTIONS(1651), - [anon_sym_ATproduction] = ACTIONS(1653), - [anon_sym_ATenv] = ACTIONS(1655), - [anon_sym_AThasSection] = ACTIONS(1657), - [anon_sym_ATsectionMissing] = ACTIONS(1659), - [anon_sym_ATerror] = ACTIONS(1661), - [anon_sym_ATenderror] = ACTIONS(291), - [aux_sym__custom_token1] = ACTIONS(1663), - [aux_sym__custom_token2] = ACTIONS(1665), - [anon_sym_ATswitch] = ACTIONS(1667), - [aux_sym_loop_operator_token1] = ACTIONS(1669), - [anon_sym_ATfor] = ACTIONS(1671), - [anon_sym_ATforeach] = ACTIONS(1673), - [anon_sym_ATforelse] = ACTIONS(1675), - [anon_sym_ATwhile] = ACTIONS(1677), - [anon_sym_ATpersist] = ACTIONS(1679), - [anon_sym_ATteleport] = ACTIONS(1681), - [anon_sym_ATvolt] = ACTIONS(1683), - [aux_sym_text_token1] = ACTIONS(1685), - [aux_sym_text_token2] = ACTIONS(1685), - [aux_sym_text_token3] = ACTIONS(1685), + [aux_sym_keyword_token1] = ACTIONS(1646), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1648), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1650), + [anon_sym_ATphp] = ACTIONS(1652), + [aux_sym_attribute_token1] = ACTIONS(1654), + [aux_sym__inline_directive_token1] = ACTIONS(1656), + [anon_sym_ATfragment] = ACTIONS(1658), + [anon_sym_ATsection] = ACTIONS(1660), + [anon_sym_ATonce] = ACTIONS(1662), + [anon_sym_ATverbatim] = ACTIONS(1664), + [anon_sym_ATpush] = ACTIONS(1666), + [anon_sym_ATpushOnce] = ACTIONS(1668), + [anon_sym_ATpushIf] = ACTIONS(1670), + [anon_sym_ATprepend] = ACTIONS(1672), + [anon_sym_ATprependOnce] = ACTIONS(1674), + [anon_sym_ATelse] = ACTIONS(1676), + [aux_sym_conditional_keyword_token1] = ACTIONS(1678), + [anon_sym_ATif] = ACTIONS(1680), + [anon_sym_ATunless] = ACTIONS(1682), + [anon_sym_ATisset] = ACTIONS(1684), + [anon_sym_ATempty] = ACTIONS(1686), + [anon_sym_ATauth] = ACTIONS(1688), + [anon_sym_ATguest] = ACTIONS(1690), + [anon_sym_ATproduction] = ACTIONS(1692), + [anon_sym_ATenv] = ACTIONS(1694), + [anon_sym_AThasSection] = ACTIONS(1696), + [anon_sym_ATsectionMissing] = ACTIONS(1698), + [anon_sym_ATerror] = ACTIONS(1700), + [anon_sym_ATenderror] = ACTIONS(297), + [aux_sym__custom_token1] = ACTIONS(1702), + [aux_sym__custom_token2] = ACTIONS(1704), + [anon_sym_ATswitch] = ACTIONS(1706), + [aux_sym_loop_operator_token1] = ACTIONS(1708), + [anon_sym_ATfor] = ACTIONS(1710), + [anon_sym_ATforeach] = ACTIONS(1712), + [anon_sym_ATforelse] = ACTIONS(1714), + [anon_sym_ATwhile] = ACTIONS(1716), + [anon_sym_ATpersist] = ACTIONS(1718), + [anon_sym_ATteleport] = ACTIONS(1720), + [anon_sym_ATvolt] = ACTIONS(1722), + [aux_sym_text_token1] = ACTIONS(1724), + [aux_sym_text_token2] = ACTIONS(1724), + [aux_sym_text_token3] = ACTIONS(1726), }, [94] = { [sym__definition] = STATE(634), @@ -25457,49 +25858,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(762), [aux_sym__if_statement_directive_body_repeat1] = STATE(73), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(1607), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1609), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1611), - [anon_sym_ATphp] = ACTIONS(1613), - [aux_sym_attribute_token1] = ACTIONS(1615), - [aux_sym__inline_directive_token1] = ACTIONS(1617), - [anon_sym_ATfragment] = ACTIONS(1619), - [anon_sym_ATsection] = ACTIONS(1621), - [anon_sym_ATonce] = ACTIONS(1623), - [anon_sym_ATverbatim] = ACTIONS(1625), - [anon_sym_ATpush] = ACTIONS(1627), - [anon_sym_ATpushOnce] = ACTIONS(1629), - [anon_sym_ATpushIf] = ACTIONS(1631), - [anon_sym_ATprepend] = ACTIONS(1633), - [anon_sym_ATprependOnce] = ACTIONS(1635), - [anon_sym_ATelse] = ACTIONS(1637), - [aux_sym_conditional_keyword_token1] = ACTIONS(1639), - [anon_sym_ATif] = ACTIONS(1641), - [anon_sym_ATunless] = ACTIONS(1643), - [anon_sym_ATisset] = ACTIONS(1645), - [anon_sym_ATempty] = ACTIONS(1647), - [anon_sym_ATauth] = ACTIONS(1649), - [anon_sym_ATguest] = ACTIONS(1651), - [anon_sym_ATproduction] = ACTIONS(1653), - [anon_sym_ATenv] = ACTIONS(1655), - [anon_sym_AThasSection] = ACTIONS(1657), - [anon_sym_ATsectionMissing] = ACTIONS(1659), - [anon_sym_ATerror] = ACTIONS(1661), - [anon_sym_ATenderror] = ACTIONS(581), - [aux_sym__custom_token1] = ACTIONS(1663), - [aux_sym__custom_token2] = ACTIONS(1665), - [anon_sym_ATswitch] = ACTIONS(1667), - [aux_sym_loop_operator_token1] = ACTIONS(1669), - [anon_sym_ATfor] = ACTIONS(1671), - [anon_sym_ATforeach] = ACTIONS(1673), - [anon_sym_ATforelse] = ACTIONS(1675), - [anon_sym_ATwhile] = ACTIONS(1677), - [anon_sym_ATpersist] = ACTIONS(1679), - [anon_sym_ATteleport] = ACTIONS(1681), - [anon_sym_ATvolt] = ACTIONS(1683), - [aux_sym_text_token1] = ACTIONS(1685), - [aux_sym_text_token2] = ACTIONS(1685), - [aux_sym_text_token3] = ACTIONS(1685), + [aux_sym_keyword_token1] = ACTIONS(1646), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1648), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1650), + [anon_sym_ATphp] = ACTIONS(1652), + [aux_sym_attribute_token1] = ACTIONS(1654), + [aux_sym__inline_directive_token1] = ACTIONS(1656), + [anon_sym_ATfragment] = ACTIONS(1658), + [anon_sym_ATsection] = ACTIONS(1660), + [anon_sym_ATonce] = ACTIONS(1662), + [anon_sym_ATverbatim] = ACTIONS(1664), + [anon_sym_ATpush] = ACTIONS(1666), + [anon_sym_ATpushOnce] = ACTIONS(1668), + [anon_sym_ATpushIf] = ACTIONS(1670), + [anon_sym_ATprepend] = ACTIONS(1672), + [anon_sym_ATprependOnce] = ACTIONS(1674), + [anon_sym_ATelse] = ACTIONS(1676), + [aux_sym_conditional_keyword_token1] = ACTIONS(1678), + [anon_sym_ATif] = ACTIONS(1680), + [anon_sym_ATunless] = ACTIONS(1682), + [anon_sym_ATisset] = ACTIONS(1684), + [anon_sym_ATempty] = ACTIONS(1686), + [anon_sym_ATauth] = ACTIONS(1688), + [anon_sym_ATguest] = ACTIONS(1690), + [anon_sym_ATproduction] = ACTIONS(1692), + [anon_sym_ATenv] = ACTIONS(1694), + [anon_sym_AThasSection] = ACTIONS(1696), + [anon_sym_ATsectionMissing] = ACTIONS(1698), + [anon_sym_ATerror] = ACTIONS(1700), + [anon_sym_ATenderror] = ACTIONS(594), + [aux_sym__custom_token1] = ACTIONS(1702), + [aux_sym__custom_token2] = ACTIONS(1704), + [anon_sym_ATswitch] = ACTIONS(1706), + [aux_sym_loop_operator_token1] = ACTIONS(1708), + [anon_sym_ATfor] = ACTIONS(1710), + [anon_sym_ATforeach] = ACTIONS(1712), + [anon_sym_ATforelse] = ACTIONS(1714), + [anon_sym_ATwhile] = ACTIONS(1716), + [anon_sym_ATpersist] = ACTIONS(1718), + [anon_sym_ATteleport] = ACTIONS(1720), + [anon_sym_ATvolt] = ACTIONS(1722), + [aux_sym_text_token1] = ACTIONS(1724), + [aux_sym_text_token2] = ACTIONS(1724), + [aux_sym_text_token3] = ACTIONS(1726), }, [95] = { [sym__definition] = STATE(1064), @@ -25552,49 +25953,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(95), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(1687), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1690), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1693), - [anon_sym_ATphp] = ACTIONS(1696), - [aux_sym_attribute_token1] = ACTIONS(1699), - [aux_sym__inline_directive_token1] = ACTIONS(1702), - [anon_sym_ATfragment] = ACTIONS(1705), - [anon_sym_ATsection] = ACTIONS(1708), - [anon_sym_ATonce] = ACTIONS(1711), - [anon_sym_ATverbatim] = ACTIONS(1714), - [anon_sym_ATpush] = ACTIONS(1717), - [anon_sym_ATpushOnce] = ACTIONS(1720), - [anon_sym_ATpushIf] = ACTIONS(1723), - [anon_sym_ATprepend] = ACTIONS(1726), - [anon_sym_ATprependOnce] = ACTIONS(1729), - [anon_sym_ATelse] = ACTIONS(1732), - [aux_sym_conditional_keyword_token1] = ACTIONS(1735), - [anon_sym_ATif] = ACTIONS(1738), - [anon_sym_ATunless] = ACTIONS(1741), - [anon_sym_ATisset] = ACTIONS(1744), - [anon_sym_ATempty] = ACTIONS(1747), - [anon_sym_ATauth] = ACTIONS(1750), - [anon_sym_ATendauth] = ACTIONS(471), - [anon_sym_ATguest] = ACTIONS(1753), - [anon_sym_ATproduction] = ACTIONS(1756), - [anon_sym_ATenv] = ACTIONS(1759), - [anon_sym_AThasSection] = ACTIONS(1762), - [anon_sym_ATsectionMissing] = ACTIONS(1765), - [anon_sym_ATerror] = ACTIONS(1768), - [aux_sym__custom_token1] = ACTIONS(1771), - [aux_sym__custom_token2] = ACTIONS(1774), - [anon_sym_ATswitch] = ACTIONS(1777), - [aux_sym_loop_operator_token1] = ACTIONS(1780), - [anon_sym_ATfor] = ACTIONS(1783), - [anon_sym_ATforeach] = ACTIONS(1786), - [anon_sym_ATforelse] = ACTIONS(1789), - [anon_sym_ATwhile] = ACTIONS(1792), - [anon_sym_ATpersist] = ACTIONS(1795), - [anon_sym_ATteleport] = ACTIONS(1798), - [anon_sym_ATvolt] = ACTIONS(1801), - [aux_sym_text_token1] = ACTIONS(1804), - [aux_sym_text_token2] = ACTIONS(1804), - [aux_sym_text_token3] = ACTIONS(1804), + [aux_sym_keyword_token1] = ACTIONS(1728), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1731), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1734), + [anon_sym_ATphp] = ACTIONS(1737), + [aux_sym_attribute_token1] = ACTIONS(1740), + [aux_sym__inline_directive_token1] = ACTIONS(1743), + [anon_sym_ATfragment] = ACTIONS(1746), + [anon_sym_ATsection] = ACTIONS(1749), + [anon_sym_ATonce] = ACTIONS(1752), + [anon_sym_ATverbatim] = ACTIONS(1755), + [anon_sym_ATpush] = ACTIONS(1758), + [anon_sym_ATpushOnce] = ACTIONS(1761), + [anon_sym_ATpushIf] = ACTIONS(1764), + [anon_sym_ATprepend] = ACTIONS(1767), + [anon_sym_ATprependOnce] = ACTIONS(1770), + [anon_sym_ATelse] = ACTIONS(1773), + [aux_sym_conditional_keyword_token1] = ACTIONS(1776), + [anon_sym_ATif] = ACTIONS(1779), + [anon_sym_ATunless] = ACTIONS(1782), + [anon_sym_ATisset] = ACTIONS(1785), + [anon_sym_ATempty] = ACTIONS(1788), + [anon_sym_ATauth] = ACTIONS(1791), + [anon_sym_ATendauth] = ACTIONS(481), + [anon_sym_ATguest] = ACTIONS(1794), + [anon_sym_ATproduction] = ACTIONS(1797), + [anon_sym_ATenv] = ACTIONS(1800), + [anon_sym_AThasSection] = ACTIONS(1803), + [anon_sym_ATsectionMissing] = ACTIONS(1806), + [anon_sym_ATerror] = ACTIONS(1809), + [aux_sym__custom_token1] = ACTIONS(1812), + [aux_sym__custom_token2] = ACTIONS(1815), + [anon_sym_ATswitch] = ACTIONS(1818), + [aux_sym_loop_operator_token1] = ACTIONS(1821), + [anon_sym_ATfor] = ACTIONS(1824), + [anon_sym_ATforeach] = ACTIONS(1827), + [anon_sym_ATforelse] = ACTIONS(1830), + [anon_sym_ATwhile] = ACTIONS(1833), + [anon_sym_ATpersist] = ACTIONS(1836), + [anon_sym_ATteleport] = ACTIONS(1839), + [anon_sym_ATvolt] = ACTIONS(1842), + [aux_sym_text_token1] = ACTIONS(1845), + [aux_sym_text_token2] = ACTIONS(1845), + [aux_sym_text_token3] = ACTIONS(1848), }, [96] = { [sym__definition] = STATE(495), @@ -25647,49 +26048,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(897), [aux_sym__if_statement_directive_body_repeat1] = STATE(96), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(1807), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1810), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1813), - [anon_sym_ATphp] = ACTIONS(1816), - [aux_sym_attribute_token1] = ACTIONS(1819), - [aux_sym__inline_directive_token1] = ACTIONS(1822), - [anon_sym_ATfragment] = ACTIONS(1825), - [anon_sym_ATsection] = ACTIONS(1828), - [anon_sym_ATonce] = ACTIONS(1831), - [anon_sym_ATverbatim] = ACTIONS(1834), - [anon_sym_ATpush] = ACTIONS(1837), - [anon_sym_ATpushOnce] = ACTIONS(1840), - [anon_sym_ATpushIf] = ACTIONS(1843), - [anon_sym_ATprepend] = ACTIONS(1846), - [anon_sym_ATprependOnce] = ACTIONS(1849), - [anon_sym_ATelse] = ACTIONS(1852), - [aux_sym_conditional_keyword_token1] = ACTIONS(1855), - [anon_sym_ATif] = ACTIONS(1858), - [anon_sym_ATunless] = ACTIONS(1861), - [anon_sym_ATisset] = ACTIONS(1864), - [anon_sym_ATempty] = ACTIONS(1867), - [anon_sym_ATendempty] = ACTIONS(471), - [anon_sym_ATauth] = ACTIONS(1870), - [anon_sym_ATguest] = ACTIONS(1873), - [anon_sym_ATproduction] = ACTIONS(1876), - [anon_sym_ATenv] = ACTIONS(1879), - [anon_sym_AThasSection] = ACTIONS(1882), - [anon_sym_ATsectionMissing] = ACTIONS(1885), - [anon_sym_ATerror] = ACTIONS(1888), - [aux_sym__custom_token1] = ACTIONS(1891), - [aux_sym__custom_token2] = ACTIONS(1894), - [anon_sym_ATswitch] = ACTIONS(1897), - [aux_sym_loop_operator_token1] = ACTIONS(1900), - [anon_sym_ATfor] = ACTIONS(1903), - [anon_sym_ATforeach] = ACTIONS(1906), - [anon_sym_ATforelse] = ACTIONS(1909), - [anon_sym_ATwhile] = ACTIONS(1912), - [anon_sym_ATpersist] = ACTIONS(1915), - [anon_sym_ATteleport] = ACTIONS(1918), - [anon_sym_ATvolt] = ACTIONS(1921), - [aux_sym_text_token1] = ACTIONS(1924), - [aux_sym_text_token2] = ACTIONS(1924), - [aux_sym_text_token3] = ACTIONS(1924), + [aux_sym_keyword_token1] = ACTIONS(1851), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1854), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1857), + [anon_sym_ATphp] = ACTIONS(1860), + [aux_sym_attribute_token1] = ACTIONS(1863), + [aux_sym__inline_directive_token1] = ACTIONS(1866), + [anon_sym_ATfragment] = ACTIONS(1869), + [anon_sym_ATsection] = ACTIONS(1872), + [anon_sym_ATonce] = ACTIONS(1875), + [anon_sym_ATverbatim] = ACTIONS(1878), + [anon_sym_ATpush] = ACTIONS(1881), + [anon_sym_ATpushOnce] = ACTIONS(1884), + [anon_sym_ATpushIf] = ACTIONS(1887), + [anon_sym_ATprepend] = ACTIONS(1890), + [anon_sym_ATprependOnce] = ACTIONS(1893), + [anon_sym_ATelse] = ACTIONS(1896), + [aux_sym_conditional_keyword_token1] = ACTIONS(1899), + [anon_sym_ATif] = ACTIONS(1902), + [anon_sym_ATunless] = ACTIONS(1905), + [anon_sym_ATisset] = ACTIONS(1908), + [anon_sym_ATempty] = ACTIONS(1911), + [anon_sym_ATendempty] = ACTIONS(481), + [anon_sym_ATauth] = ACTIONS(1914), + [anon_sym_ATguest] = ACTIONS(1917), + [anon_sym_ATproduction] = ACTIONS(1920), + [anon_sym_ATenv] = ACTIONS(1923), + [anon_sym_AThasSection] = ACTIONS(1926), + [anon_sym_ATsectionMissing] = ACTIONS(1929), + [anon_sym_ATerror] = ACTIONS(1932), + [aux_sym__custom_token1] = ACTIONS(1935), + [aux_sym__custom_token2] = ACTIONS(1938), + [anon_sym_ATswitch] = ACTIONS(1941), + [aux_sym_loop_operator_token1] = ACTIONS(1944), + [anon_sym_ATfor] = ACTIONS(1947), + [anon_sym_ATforeach] = ACTIONS(1950), + [anon_sym_ATforelse] = ACTIONS(1953), + [anon_sym_ATwhile] = ACTIONS(1956), + [anon_sym_ATpersist] = ACTIONS(1959), + [anon_sym_ATteleport] = ACTIONS(1962), + [anon_sym_ATvolt] = ACTIONS(1965), + [aux_sym_text_token1] = ACTIONS(1968), + [aux_sym_text_token2] = ACTIONS(1968), + [aux_sym_text_token3] = ACTIONS(1971), }, [97] = { [sym__definition] = STATE(1065), @@ -25742,49 +26143,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(1927), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(1974), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [98] = { [sym__definition] = STATE(1064), @@ -25837,49 +26238,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(95), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATendauth] = ACTIONS(245), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATendauth] = ACTIONS(251), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [99] = { [sym__definition] = STATE(1065), @@ -25932,49 +26333,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(1929), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(1976), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [100] = { [sym__definition] = STATE(1065), @@ -26027,49 +26428,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(1931), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(1978), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [101] = { [sym__definition] = STATE(1002), @@ -26122,49 +26523,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1012), [aux_sym__if_statement_directive_body_repeat1] = STATE(66), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(1113), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1115), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1117), - [anon_sym_ATphp] = ACTIONS(1119), - [aux_sym_attribute_token1] = ACTIONS(1121), - [aux_sym__inline_directive_token1] = ACTIONS(1123), - [anon_sym_ATfragment] = ACTIONS(1125), - [anon_sym_ATsection] = ACTIONS(1127), - [anon_sym_ATonce] = ACTIONS(1129), - [anon_sym_ATverbatim] = ACTIONS(1131), - [anon_sym_ATpush] = ACTIONS(1133), - [anon_sym_ATpushOnce] = ACTIONS(1135), - [anon_sym_ATpushIf] = ACTIONS(1137), - [anon_sym_ATprepend] = ACTIONS(1139), - [anon_sym_ATprependOnce] = ACTIONS(1141), - [anon_sym_ATelse] = ACTIONS(1143), - [aux_sym_conditional_keyword_token1] = ACTIONS(1145), - [anon_sym_ATif] = ACTIONS(1147), - [anon_sym_ATendif] = ACTIONS(581), - [anon_sym_ATunless] = ACTIONS(1149), - [anon_sym_ATisset] = ACTIONS(1151), - [anon_sym_ATempty] = ACTIONS(1153), - [anon_sym_ATauth] = ACTIONS(1155), - [anon_sym_ATguest] = ACTIONS(1157), - [anon_sym_ATproduction] = ACTIONS(1159), - [anon_sym_ATenv] = ACTIONS(1161), - [anon_sym_AThasSection] = ACTIONS(1163), - [anon_sym_ATsectionMissing] = ACTIONS(1165), - [anon_sym_ATerror] = ACTIONS(1167), - [aux_sym__custom_token1] = ACTIONS(1169), - [aux_sym__custom_token2] = ACTIONS(1171), - [anon_sym_ATswitch] = ACTIONS(1173), - [aux_sym_loop_operator_token1] = ACTIONS(1175), - [anon_sym_ATfor] = ACTIONS(1177), - [anon_sym_ATforeach] = ACTIONS(1179), - [anon_sym_ATforelse] = ACTIONS(1181), - [anon_sym_ATwhile] = ACTIONS(1183), - [anon_sym_ATpersist] = ACTIONS(1185), - [anon_sym_ATteleport] = ACTIONS(1187), - [anon_sym_ATvolt] = ACTIONS(1189), - [aux_sym_text_token1] = ACTIONS(1191), - [aux_sym_text_token2] = ACTIONS(1191), - [aux_sym_text_token3] = ACTIONS(1191), + [aux_sym_keyword_token1] = ACTIONS(1140), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1142), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1144), + [anon_sym_ATphp] = ACTIONS(1146), + [aux_sym_attribute_token1] = ACTIONS(1148), + [aux_sym__inline_directive_token1] = ACTIONS(1150), + [anon_sym_ATfragment] = ACTIONS(1152), + [anon_sym_ATsection] = ACTIONS(1154), + [anon_sym_ATonce] = ACTIONS(1156), + [anon_sym_ATverbatim] = ACTIONS(1158), + [anon_sym_ATpush] = ACTIONS(1160), + [anon_sym_ATpushOnce] = ACTIONS(1162), + [anon_sym_ATpushIf] = ACTIONS(1164), + [anon_sym_ATprepend] = ACTIONS(1166), + [anon_sym_ATprependOnce] = ACTIONS(1168), + [anon_sym_ATelse] = ACTIONS(1170), + [aux_sym_conditional_keyword_token1] = ACTIONS(1172), + [anon_sym_ATif] = ACTIONS(1174), + [anon_sym_ATendif] = ACTIONS(594), + [anon_sym_ATunless] = ACTIONS(1176), + [anon_sym_ATisset] = ACTIONS(1178), + [anon_sym_ATempty] = ACTIONS(1180), + [anon_sym_ATauth] = ACTIONS(1182), + [anon_sym_ATguest] = ACTIONS(1184), + [anon_sym_ATproduction] = ACTIONS(1186), + [anon_sym_ATenv] = ACTIONS(1188), + [anon_sym_AThasSection] = ACTIONS(1190), + [anon_sym_ATsectionMissing] = ACTIONS(1192), + [anon_sym_ATerror] = ACTIONS(1194), + [aux_sym__custom_token1] = ACTIONS(1196), + [aux_sym__custom_token2] = ACTIONS(1198), + [anon_sym_ATswitch] = ACTIONS(1200), + [aux_sym_loop_operator_token1] = ACTIONS(1202), + [anon_sym_ATfor] = ACTIONS(1204), + [anon_sym_ATforeach] = ACTIONS(1206), + [anon_sym_ATforelse] = ACTIONS(1208), + [anon_sym_ATwhile] = ACTIONS(1210), + [anon_sym_ATpersist] = ACTIONS(1212), + [anon_sym_ATteleport] = ACTIONS(1214), + [anon_sym_ATvolt] = ACTIONS(1216), + [aux_sym_text_token1] = ACTIONS(1218), + [aux_sym_text_token2] = ACTIONS(1218), + [aux_sym_text_token3] = ACTIONS(1220), }, [102] = { [sym__definition] = STATE(1065), @@ -26217,49 +26618,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(1933), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(1980), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [103] = { [sym__definition] = STATE(1065), @@ -26312,49 +26713,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(1935), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(1982), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [104] = { [sym__definition] = STATE(712), @@ -26407,49 +26808,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1075), [aux_sym__if_statement_directive_body_repeat1] = STATE(112), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(1937), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1939), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1941), - [anon_sym_ATphp] = ACTIONS(1943), - [aux_sym_attribute_token1] = ACTIONS(1945), - [aux_sym__inline_directive_token1] = ACTIONS(1947), - [anon_sym_ATfragment] = ACTIONS(1949), - [anon_sym_ATsection] = ACTIONS(1951), - [anon_sym_ATonce] = ACTIONS(1953), - [anon_sym_ATverbatim] = ACTIONS(1955), - [anon_sym_ATpush] = ACTIONS(1957), - [anon_sym_ATpushOnce] = ACTIONS(1959), - [anon_sym_ATpushIf] = ACTIONS(1961), - [anon_sym_ATprepend] = ACTIONS(1963), - [anon_sym_ATprependOnce] = ACTIONS(1965), - [anon_sym_ATelse] = ACTIONS(1967), - [aux_sym_conditional_keyword_token1] = ACTIONS(1969), - [anon_sym_ATif] = ACTIONS(1971), - [anon_sym_ATunless] = ACTIONS(1973), - [anon_sym_ATendunless] = ACTIONS(291), - [anon_sym_ATisset] = ACTIONS(1975), - [anon_sym_ATempty] = ACTIONS(1977), - [anon_sym_ATauth] = ACTIONS(1979), - [anon_sym_ATguest] = ACTIONS(1981), - [anon_sym_ATproduction] = ACTIONS(1983), - [anon_sym_ATenv] = ACTIONS(1985), - [anon_sym_AThasSection] = ACTIONS(1987), - [anon_sym_ATsectionMissing] = ACTIONS(1989), - [anon_sym_ATerror] = ACTIONS(1991), - [aux_sym__custom_token1] = ACTIONS(1993), - [aux_sym__custom_token2] = ACTIONS(1995), - [anon_sym_ATswitch] = ACTIONS(1997), - [aux_sym_loop_operator_token1] = ACTIONS(1999), - [anon_sym_ATfor] = ACTIONS(2001), - [anon_sym_ATforeach] = ACTIONS(2003), - [anon_sym_ATforelse] = ACTIONS(2005), - [anon_sym_ATwhile] = ACTIONS(2007), - [anon_sym_ATpersist] = ACTIONS(2009), - [anon_sym_ATteleport] = ACTIONS(2011), - [anon_sym_ATvolt] = ACTIONS(2013), - [aux_sym_text_token1] = ACTIONS(2015), - [aux_sym_text_token2] = ACTIONS(2015), - [aux_sym_text_token3] = ACTIONS(2015), + [aux_sym_keyword_token1] = ACTIONS(1984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1986), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1988), + [anon_sym_ATphp] = ACTIONS(1990), + [aux_sym_attribute_token1] = ACTIONS(1992), + [aux_sym__inline_directive_token1] = ACTIONS(1994), + [anon_sym_ATfragment] = ACTIONS(1996), + [anon_sym_ATsection] = ACTIONS(1998), + [anon_sym_ATonce] = ACTIONS(2000), + [anon_sym_ATverbatim] = ACTIONS(2002), + [anon_sym_ATpush] = ACTIONS(2004), + [anon_sym_ATpushOnce] = ACTIONS(2006), + [anon_sym_ATpushIf] = ACTIONS(2008), + [anon_sym_ATprepend] = ACTIONS(2010), + [anon_sym_ATprependOnce] = ACTIONS(2012), + [anon_sym_ATelse] = ACTIONS(2014), + [aux_sym_conditional_keyword_token1] = ACTIONS(2016), + [anon_sym_ATif] = ACTIONS(2018), + [anon_sym_ATunless] = ACTIONS(2020), + [anon_sym_ATendunless] = ACTIONS(297), + [anon_sym_ATisset] = ACTIONS(2022), + [anon_sym_ATempty] = ACTIONS(2024), + [anon_sym_ATauth] = ACTIONS(2026), + [anon_sym_ATguest] = ACTIONS(2028), + [anon_sym_ATproduction] = ACTIONS(2030), + [anon_sym_ATenv] = ACTIONS(2032), + [anon_sym_AThasSection] = ACTIONS(2034), + [anon_sym_ATsectionMissing] = ACTIONS(2036), + [anon_sym_ATerror] = ACTIONS(2038), + [aux_sym__custom_token1] = ACTIONS(2040), + [aux_sym__custom_token2] = ACTIONS(2042), + [anon_sym_ATswitch] = ACTIONS(2044), + [aux_sym_loop_operator_token1] = ACTIONS(2046), + [anon_sym_ATfor] = ACTIONS(2048), + [anon_sym_ATforeach] = ACTIONS(2050), + [anon_sym_ATforelse] = ACTIONS(2052), + [anon_sym_ATwhile] = ACTIONS(2054), + [anon_sym_ATpersist] = ACTIONS(2056), + [anon_sym_ATteleport] = ACTIONS(2058), + [anon_sym_ATvolt] = ACTIONS(2060), + [aux_sym_text_token1] = ACTIONS(2062), + [aux_sym_text_token2] = ACTIONS(2062), + [aux_sym_text_token3] = ACTIONS(2064), }, [105] = { [sym__definition] = STATE(1065), @@ -26502,49 +26903,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(2017), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(2066), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [106] = { [sym__definition] = STATE(702), @@ -26597,49 +26998,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(692), [aux_sym__if_statement_directive_body_repeat1] = STATE(90), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(1403), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1405), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1407), - [anon_sym_ATphp] = ACTIONS(1409), - [aux_sym_attribute_token1] = ACTIONS(1411), - [aux_sym__inline_directive_token1] = ACTIONS(1413), - [anon_sym_ATfragment] = ACTIONS(1415), - [anon_sym_ATsection] = ACTIONS(1417), - [anon_sym_ATonce] = ACTIONS(1419), - [anon_sym_ATverbatim] = ACTIONS(1421), - [anon_sym_ATpush] = ACTIONS(1423), - [anon_sym_ATpushOnce] = ACTIONS(1425), - [anon_sym_ATpushIf] = ACTIONS(1427), - [anon_sym_ATprepend] = ACTIONS(1429), - [anon_sym_ATprependOnce] = ACTIONS(1431), - [anon_sym_ATelse] = ACTIONS(1433), - [aux_sym_conditional_keyword_token1] = ACTIONS(1435), - [anon_sym_ATif] = ACTIONS(1437), - [anon_sym_ATunless] = ACTIONS(1439), - [anon_sym_ATisset] = ACTIONS(1441), - [anon_sym_ATempty] = ACTIONS(1443), - [anon_sym_ATauth] = ACTIONS(1445), - [anon_sym_ATguest] = ACTIONS(1447), - [anon_sym_ATproduction] = ACTIONS(1449), - [anon_sym_ATenv] = ACTIONS(1451), - [anon_sym_AThasSection] = ACTIONS(1453), - [anon_sym_ATsectionMissing] = ACTIONS(1455), - [anon_sym_ATerror] = ACTIONS(1457), - [aux_sym__custom_token1] = ACTIONS(1459), - [aux_sym__custom_token2] = ACTIONS(1461), - [aux_sym__custom_token3] = ACTIONS(291), - [anon_sym_ATswitch] = ACTIONS(1463), - [aux_sym_loop_operator_token1] = ACTIONS(1465), - [anon_sym_ATfor] = ACTIONS(1467), - [anon_sym_ATforeach] = ACTIONS(1469), - [anon_sym_ATforelse] = ACTIONS(1471), - [anon_sym_ATwhile] = ACTIONS(1473), - [anon_sym_ATpersist] = ACTIONS(1475), - [anon_sym_ATteleport] = ACTIONS(1477), - [anon_sym_ATvolt] = ACTIONS(1479), - [aux_sym_text_token1] = ACTIONS(1481), - [aux_sym_text_token2] = ACTIONS(1481), - [aux_sym_text_token3] = ACTIONS(1481), + [aux_sym_keyword_token1] = ACTIONS(1437), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1439), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1441), + [anon_sym_ATphp] = ACTIONS(1443), + [aux_sym_attribute_token1] = ACTIONS(1445), + [aux_sym__inline_directive_token1] = ACTIONS(1447), + [anon_sym_ATfragment] = ACTIONS(1449), + [anon_sym_ATsection] = ACTIONS(1451), + [anon_sym_ATonce] = ACTIONS(1453), + [anon_sym_ATverbatim] = ACTIONS(1455), + [anon_sym_ATpush] = ACTIONS(1457), + [anon_sym_ATpushOnce] = ACTIONS(1459), + [anon_sym_ATpushIf] = ACTIONS(1461), + [anon_sym_ATprepend] = ACTIONS(1463), + [anon_sym_ATprependOnce] = ACTIONS(1465), + [anon_sym_ATelse] = ACTIONS(1467), + [aux_sym_conditional_keyword_token1] = ACTIONS(1469), + [anon_sym_ATif] = ACTIONS(1471), + [anon_sym_ATunless] = ACTIONS(1473), + [anon_sym_ATisset] = ACTIONS(1475), + [anon_sym_ATempty] = ACTIONS(1477), + [anon_sym_ATauth] = ACTIONS(1479), + [anon_sym_ATguest] = ACTIONS(1481), + [anon_sym_ATproduction] = ACTIONS(1483), + [anon_sym_ATenv] = ACTIONS(1485), + [anon_sym_AThasSection] = ACTIONS(1487), + [anon_sym_ATsectionMissing] = ACTIONS(1489), + [anon_sym_ATerror] = ACTIONS(1491), + [aux_sym__custom_token1] = ACTIONS(1493), + [aux_sym__custom_token2] = ACTIONS(1495), + [aux_sym__custom_token3] = ACTIONS(297), + [anon_sym_ATswitch] = ACTIONS(1497), + [aux_sym_loop_operator_token1] = ACTIONS(1499), + [anon_sym_ATfor] = ACTIONS(1501), + [anon_sym_ATforeach] = ACTIONS(1503), + [anon_sym_ATforelse] = ACTIONS(1505), + [anon_sym_ATwhile] = ACTIONS(1507), + [anon_sym_ATpersist] = ACTIONS(1509), + [anon_sym_ATteleport] = ACTIONS(1511), + [anon_sym_ATvolt] = ACTIONS(1513), + [aux_sym_text_token1] = ACTIONS(1515), + [aux_sym_text_token2] = ACTIONS(1515), + [aux_sym_text_token3] = ACTIONS(1517), }, [107] = { [sym__definition] = STATE(1065), @@ -26692,49 +27093,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(2019), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(2068), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [108] = { [sym__definition] = STATE(1065), @@ -26787,49 +27188,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(2021), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(2070), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [109] = { [sym__definition] = STATE(1065), @@ -26882,49 +27283,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(2023), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(2072), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [110] = { [sym__definition] = STATE(1092), @@ -26977,49 +27378,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(110), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2025), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2031), - [anon_sym_ATphp] = ACTIONS(2034), - [aux_sym_attribute_token1] = ACTIONS(2037), - [aux_sym__inline_directive_token1] = ACTIONS(2040), - [anon_sym_ATfragment] = ACTIONS(2043), - [anon_sym_ATsection] = ACTIONS(2046), - [anon_sym_ATonce] = ACTIONS(2049), - [anon_sym_ATverbatim] = ACTIONS(2052), - [anon_sym_ATpush] = ACTIONS(2055), - [anon_sym_ATpushOnce] = ACTIONS(2058), - [anon_sym_ATpushIf] = ACTIONS(2061), - [anon_sym_ATprepend] = ACTIONS(2064), - [anon_sym_ATprependOnce] = ACTIONS(2067), - [anon_sym_ATelse] = ACTIONS(2070), - [aux_sym_conditional_keyword_token1] = ACTIONS(2073), - [anon_sym_ATif] = ACTIONS(2076), - [anon_sym_ATunless] = ACTIONS(2079), - [anon_sym_ATisset] = ACTIONS(2082), - [anon_sym_ATempty] = ACTIONS(2085), - [anon_sym_ATauth] = ACTIONS(2088), - [anon_sym_ATguest] = ACTIONS(2091), - [anon_sym_ATendguest] = ACTIONS(471), - [anon_sym_ATproduction] = ACTIONS(2094), - [anon_sym_ATenv] = ACTIONS(2097), - [anon_sym_AThasSection] = ACTIONS(2100), - [anon_sym_ATsectionMissing] = ACTIONS(2103), - [anon_sym_ATerror] = ACTIONS(2106), - [aux_sym__custom_token1] = ACTIONS(2109), - [aux_sym__custom_token2] = ACTIONS(2112), - [anon_sym_ATswitch] = ACTIONS(2115), - [aux_sym_loop_operator_token1] = ACTIONS(2118), - [anon_sym_ATfor] = ACTIONS(2121), - [anon_sym_ATforeach] = ACTIONS(2124), - [anon_sym_ATforelse] = ACTIONS(2127), - [anon_sym_ATwhile] = ACTIONS(2130), - [anon_sym_ATpersist] = ACTIONS(2133), - [anon_sym_ATteleport] = ACTIONS(2136), - [anon_sym_ATvolt] = ACTIONS(2139), - [aux_sym_text_token1] = ACTIONS(2142), - [aux_sym_text_token2] = ACTIONS(2142), - [aux_sym_text_token3] = ACTIONS(2142), + [aux_sym_keyword_token1] = ACTIONS(2074), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2077), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2080), + [anon_sym_ATphp] = ACTIONS(2083), + [aux_sym_attribute_token1] = ACTIONS(2086), + [aux_sym__inline_directive_token1] = ACTIONS(2089), + [anon_sym_ATfragment] = ACTIONS(2092), + [anon_sym_ATsection] = ACTIONS(2095), + [anon_sym_ATonce] = ACTIONS(2098), + [anon_sym_ATverbatim] = ACTIONS(2101), + [anon_sym_ATpush] = ACTIONS(2104), + [anon_sym_ATpushOnce] = ACTIONS(2107), + [anon_sym_ATpushIf] = ACTIONS(2110), + [anon_sym_ATprepend] = ACTIONS(2113), + [anon_sym_ATprependOnce] = ACTIONS(2116), + [anon_sym_ATelse] = ACTIONS(2119), + [aux_sym_conditional_keyword_token1] = ACTIONS(2122), + [anon_sym_ATif] = ACTIONS(2125), + [anon_sym_ATunless] = ACTIONS(2128), + [anon_sym_ATisset] = ACTIONS(2131), + [anon_sym_ATempty] = ACTIONS(2134), + [anon_sym_ATauth] = ACTIONS(2137), + [anon_sym_ATguest] = ACTIONS(2140), + [anon_sym_ATendguest] = ACTIONS(481), + [anon_sym_ATproduction] = ACTIONS(2143), + [anon_sym_ATenv] = ACTIONS(2146), + [anon_sym_AThasSection] = ACTIONS(2149), + [anon_sym_ATsectionMissing] = ACTIONS(2152), + [anon_sym_ATerror] = ACTIONS(2155), + [aux_sym__custom_token1] = ACTIONS(2158), + [aux_sym__custom_token2] = ACTIONS(2161), + [anon_sym_ATswitch] = ACTIONS(2164), + [aux_sym_loop_operator_token1] = ACTIONS(2167), + [anon_sym_ATfor] = ACTIONS(2170), + [anon_sym_ATforeach] = ACTIONS(2173), + [anon_sym_ATforelse] = ACTIONS(2176), + [anon_sym_ATwhile] = ACTIONS(2179), + [anon_sym_ATpersist] = ACTIONS(2182), + [anon_sym_ATteleport] = ACTIONS(2185), + [anon_sym_ATvolt] = ACTIONS(2188), + [aux_sym_text_token1] = ACTIONS(2191), + [aux_sym_text_token2] = ACTIONS(2191), + [aux_sym_text_token3] = ACTIONS(2194), }, [111] = { [sym__definition] = STATE(1065), @@ -27072,49 +27473,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(2145), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(2197), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [112] = { [sym__definition] = STATE(712), @@ -27167,49 +27568,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1075), [aux_sym__if_statement_directive_body_repeat1] = STATE(77), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(1937), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1939), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1941), - [anon_sym_ATphp] = ACTIONS(1943), - [aux_sym_attribute_token1] = ACTIONS(1945), - [aux_sym__inline_directive_token1] = ACTIONS(1947), - [anon_sym_ATfragment] = ACTIONS(1949), - [anon_sym_ATsection] = ACTIONS(1951), - [anon_sym_ATonce] = ACTIONS(1953), - [anon_sym_ATverbatim] = ACTIONS(1955), - [anon_sym_ATpush] = ACTIONS(1957), - [anon_sym_ATpushOnce] = ACTIONS(1959), - [anon_sym_ATpushIf] = ACTIONS(1961), - [anon_sym_ATprepend] = ACTIONS(1963), - [anon_sym_ATprependOnce] = ACTIONS(1965), - [anon_sym_ATelse] = ACTIONS(1967), - [aux_sym_conditional_keyword_token1] = ACTIONS(1969), - [anon_sym_ATif] = ACTIONS(1971), - [anon_sym_ATunless] = ACTIONS(1973), - [anon_sym_ATendunless] = ACTIONS(581), - [anon_sym_ATisset] = ACTIONS(1975), - [anon_sym_ATempty] = ACTIONS(1977), - [anon_sym_ATauth] = ACTIONS(1979), - [anon_sym_ATguest] = ACTIONS(1981), - [anon_sym_ATproduction] = ACTIONS(1983), - [anon_sym_ATenv] = ACTIONS(1985), - [anon_sym_AThasSection] = ACTIONS(1987), - [anon_sym_ATsectionMissing] = ACTIONS(1989), - [anon_sym_ATerror] = ACTIONS(1991), - [aux_sym__custom_token1] = ACTIONS(1993), - [aux_sym__custom_token2] = ACTIONS(1995), - [anon_sym_ATswitch] = ACTIONS(1997), - [aux_sym_loop_operator_token1] = ACTIONS(1999), - [anon_sym_ATfor] = ACTIONS(2001), - [anon_sym_ATforeach] = ACTIONS(2003), - [anon_sym_ATforelse] = ACTIONS(2005), - [anon_sym_ATwhile] = ACTIONS(2007), - [anon_sym_ATpersist] = ACTIONS(2009), - [anon_sym_ATteleport] = ACTIONS(2011), - [anon_sym_ATvolt] = ACTIONS(2013), - [aux_sym_text_token1] = ACTIONS(2015), - [aux_sym_text_token2] = ACTIONS(2015), - [aux_sym_text_token3] = ACTIONS(2015), + [aux_sym_keyword_token1] = ACTIONS(1984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1986), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1988), + [anon_sym_ATphp] = ACTIONS(1990), + [aux_sym_attribute_token1] = ACTIONS(1992), + [aux_sym__inline_directive_token1] = ACTIONS(1994), + [anon_sym_ATfragment] = ACTIONS(1996), + [anon_sym_ATsection] = ACTIONS(1998), + [anon_sym_ATonce] = ACTIONS(2000), + [anon_sym_ATverbatim] = ACTIONS(2002), + [anon_sym_ATpush] = ACTIONS(2004), + [anon_sym_ATpushOnce] = ACTIONS(2006), + [anon_sym_ATpushIf] = ACTIONS(2008), + [anon_sym_ATprepend] = ACTIONS(2010), + [anon_sym_ATprependOnce] = ACTIONS(2012), + [anon_sym_ATelse] = ACTIONS(2014), + [aux_sym_conditional_keyword_token1] = ACTIONS(2016), + [anon_sym_ATif] = ACTIONS(2018), + [anon_sym_ATunless] = ACTIONS(2020), + [anon_sym_ATendunless] = ACTIONS(594), + [anon_sym_ATisset] = ACTIONS(2022), + [anon_sym_ATempty] = ACTIONS(2024), + [anon_sym_ATauth] = ACTIONS(2026), + [anon_sym_ATguest] = ACTIONS(2028), + [anon_sym_ATproduction] = ACTIONS(2030), + [anon_sym_ATenv] = ACTIONS(2032), + [anon_sym_AThasSection] = ACTIONS(2034), + [anon_sym_ATsectionMissing] = ACTIONS(2036), + [anon_sym_ATerror] = ACTIONS(2038), + [aux_sym__custom_token1] = ACTIONS(2040), + [aux_sym__custom_token2] = ACTIONS(2042), + [anon_sym_ATswitch] = ACTIONS(2044), + [aux_sym_loop_operator_token1] = ACTIONS(2046), + [anon_sym_ATfor] = ACTIONS(2048), + [anon_sym_ATforeach] = ACTIONS(2050), + [anon_sym_ATforelse] = ACTIONS(2052), + [anon_sym_ATwhile] = ACTIONS(2054), + [anon_sym_ATpersist] = ACTIONS(2056), + [anon_sym_ATteleport] = ACTIONS(2058), + [anon_sym_ATvolt] = ACTIONS(2060), + [aux_sym_text_token1] = ACTIONS(2062), + [aux_sym_text_token2] = ACTIONS(2062), + [aux_sym_text_token3] = ACTIONS(2064), }, [113] = { [sym__definition] = STATE(1065), @@ -27262,49 +27663,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(2147), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(2199), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [114] = { [sym__definition] = STATE(1065), @@ -27357,49 +27758,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(2149), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(2201), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [115] = { [sym__definition] = STATE(1065), @@ -27452,49 +27853,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(2151), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(2203), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [116] = { [sym__definition] = STATE(1065), @@ -27547,49 +27948,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATendproduction] = ACTIONS(2153), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATendproduction] = ACTIONS(2205), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [117] = { [sym__definition] = STATE(1065), @@ -27642,48 +28043,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(72), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [118] = { [sym__definition] = STATE(1065), @@ -27736,48 +28137,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(114), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [119] = { [sym__definition] = STATE(1065), @@ -27830,48 +28231,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(97), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [120] = { [sym__definition] = STATE(1065), @@ -27924,48 +28325,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(84), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [121] = { [sym__definition] = STATE(1065), @@ -28018,48 +28419,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(64), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [122] = { [sym__definition] = STATE(1065), @@ -28112,48 +28513,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [123] = { [sym__definition] = STATE(1065), @@ -28206,48 +28607,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(70), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [124] = { [sym__definition] = STATE(1065), @@ -28300,48 +28701,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(63), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [125] = { [sym__definition] = STATE(1092), @@ -28394,48 +28795,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(591), [aux_sym__if_statement_directive_body_repeat1] = STATE(60), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(165), - [anon_sym_LBRACE_LBRACE] = ACTIONS(167), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(169), - [anon_sym_ATphp] = ACTIONS(171), - [aux_sym_attribute_token1] = ACTIONS(173), - [aux_sym__inline_directive_token1] = ACTIONS(175), - [anon_sym_ATfragment] = ACTIONS(177), - [anon_sym_ATsection] = ACTIONS(179), - [anon_sym_ATonce] = ACTIONS(181), - [anon_sym_ATverbatim] = ACTIONS(183), - [anon_sym_ATpush] = ACTIONS(185), - [anon_sym_ATpushOnce] = ACTIONS(187), - [anon_sym_ATpushIf] = ACTIONS(189), - [anon_sym_ATprepend] = ACTIONS(191), - [anon_sym_ATprependOnce] = ACTIONS(193), - [anon_sym_ATelse] = ACTIONS(195), - [aux_sym_conditional_keyword_token1] = ACTIONS(197), - [anon_sym_ATif] = ACTIONS(199), - [anon_sym_ATunless] = ACTIONS(201), - [anon_sym_ATisset] = ACTIONS(203), - [anon_sym_ATempty] = ACTIONS(205), - [anon_sym_ATauth] = ACTIONS(207), - [anon_sym_ATguest] = ACTIONS(209), - [anon_sym_ATproduction] = ACTIONS(211), - [anon_sym_ATenv] = ACTIONS(213), - [anon_sym_AThasSection] = ACTIONS(215), - [anon_sym_ATsectionMissing] = ACTIONS(217), - [anon_sym_ATerror] = ACTIONS(219), - [aux_sym__custom_token1] = ACTIONS(221), - [aux_sym__custom_token2] = ACTIONS(223), - [anon_sym_ATswitch] = ACTIONS(225), - [aux_sym_loop_operator_token1] = ACTIONS(227), - [anon_sym_ATfor] = ACTIONS(229), - [anon_sym_ATforeach] = ACTIONS(231), - [anon_sym_ATforelse] = ACTIONS(233), - [anon_sym_ATwhile] = ACTIONS(235), - [anon_sym_ATpersist] = ACTIONS(237), - [anon_sym_ATteleport] = ACTIONS(239), - [anon_sym_ATvolt] = ACTIONS(241), - [aux_sym_text_token1] = ACTIONS(243), - [aux_sym_text_token2] = ACTIONS(243), - [aux_sym_text_token3] = ACTIONS(243), + [aux_sym_keyword_token1] = ACTIONS(169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(171), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(173), + [anon_sym_ATphp] = ACTIONS(175), + [aux_sym_attribute_token1] = ACTIONS(177), + [aux_sym__inline_directive_token1] = ACTIONS(179), + [anon_sym_ATfragment] = ACTIONS(181), + [anon_sym_ATsection] = ACTIONS(183), + [anon_sym_ATonce] = ACTIONS(185), + [anon_sym_ATverbatim] = ACTIONS(187), + [anon_sym_ATpush] = ACTIONS(189), + [anon_sym_ATpushOnce] = ACTIONS(191), + [anon_sym_ATpushIf] = ACTIONS(193), + [anon_sym_ATprepend] = ACTIONS(195), + [anon_sym_ATprependOnce] = ACTIONS(197), + [anon_sym_ATelse] = ACTIONS(199), + [aux_sym_conditional_keyword_token1] = ACTIONS(201), + [anon_sym_ATif] = ACTIONS(203), + [anon_sym_ATunless] = ACTIONS(205), + [anon_sym_ATisset] = ACTIONS(207), + [anon_sym_ATempty] = ACTIONS(209), + [anon_sym_ATauth] = ACTIONS(211), + [anon_sym_ATguest] = ACTIONS(213), + [anon_sym_ATproduction] = ACTIONS(215), + [anon_sym_ATenv] = ACTIONS(217), + [anon_sym_AThasSection] = ACTIONS(219), + [anon_sym_ATsectionMissing] = ACTIONS(221), + [anon_sym_ATerror] = ACTIONS(223), + [aux_sym__custom_token1] = ACTIONS(225), + [aux_sym__custom_token2] = ACTIONS(227), + [anon_sym_ATswitch] = ACTIONS(229), + [aux_sym_loop_operator_token1] = ACTIONS(231), + [anon_sym_ATfor] = ACTIONS(233), + [anon_sym_ATforeach] = ACTIONS(235), + [anon_sym_ATforelse] = ACTIONS(237), + [anon_sym_ATwhile] = ACTIONS(239), + [anon_sym_ATpersist] = ACTIONS(241), + [anon_sym_ATteleport] = ACTIONS(243), + [anon_sym_ATvolt] = ACTIONS(245), + [aux_sym_text_token1] = ACTIONS(247), + [aux_sym_text_token2] = ACTIONS(247), + [aux_sym_text_token3] = ACTIONS(249), }, [126] = { [sym__definition] = STATE(1065), @@ -28488,48 +28889,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(85), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [127] = { [sym__definition] = STATE(1065), @@ -28582,48 +28983,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(65), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [128] = { [sym__definition] = STATE(1065), @@ -28676,48 +29077,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(116), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [129] = { [sym__definition] = STATE(1065), @@ -28770,48 +29171,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(69), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [130] = { [sym__definition] = STATE(1065), @@ -28864,48 +29265,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [131] = { [sym__definition] = STATE(1065), @@ -28958,48 +29359,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(109), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [132] = { [sym__definition] = STATE(1065), @@ -29052,48 +29453,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(92), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [133] = { [sym__definition] = STATE(1065), @@ -29146,48 +29547,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(108), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [134] = { [sym__definition] = STATE(1065), @@ -29240,48 +29641,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(99), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [135] = { [sym__definition] = STATE(1065), @@ -29334,48 +29735,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(82), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [136] = { [sym__definition] = STATE(1064), @@ -29428,48 +29829,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(906), [aux_sym__if_statement_directive_body_repeat1] = STATE(98), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(83), - [anon_sym_LBRACE_LBRACE] = ACTIONS(85), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(87), - [anon_sym_ATphp] = ACTIONS(89), - [aux_sym_attribute_token1] = ACTIONS(91), - [aux_sym__inline_directive_token1] = ACTIONS(93), - [anon_sym_ATfragment] = ACTIONS(95), - [anon_sym_ATsection] = ACTIONS(97), - [anon_sym_ATonce] = ACTIONS(99), - [anon_sym_ATverbatim] = ACTIONS(101), - [anon_sym_ATpush] = ACTIONS(103), - [anon_sym_ATpushOnce] = ACTIONS(105), - [anon_sym_ATpushIf] = ACTIONS(107), - [anon_sym_ATprepend] = ACTIONS(109), - [anon_sym_ATprependOnce] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(113), - [aux_sym_conditional_keyword_token1] = ACTIONS(115), - [anon_sym_ATif] = ACTIONS(117), - [anon_sym_ATunless] = ACTIONS(119), - [anon_sym_ATisset] = ACTIONS(121), - [anon_sym_ATempty] = ACTIONS(123), - [anon_sym_ATauth] = ACTIONS(125), - [anon_sym_ATguest] = ACTIONS(127), - [anon_sym_ATproduction] = ACTIONS(129), - [anon_sym_ATenv] = ACTIONS(131), - [anon_sym_AThasSection] = ACTIONS(133), - [anon_sym_ATsectionMissing] = ACTIONS(135), - [anon_sym_ATerror] = ACTIONS(137), - [aux_sym__custom_token1] = ACTIONS(139), - [aux_sym__custom_token2] = ACTIONS(141), - [anon_sym_ATswitch] = ACTIONS(143), - [aux_sym_loop_operator_token1] = ACTIONS(145), - [anon_sym_ATfor] = ACTIONS(147), - [anon_sym_ATforeach] = ACTIONS(149), - [anon_sym_ATforelse] = ACTIONS(151), - [anon_sym_ATwhile] = ACTIONS(153), - [anon_sym_ATpersist] = ACTIONS(155), - [anon_sym_ATteleport] = ACTIONS(157), - [anon_sym_ATvolt] = ACTIONS(159), - [aux_sym_text_token1] = ACTIONS(163), - [aux_sym_text_token2] = ACTIONS(163), - [aux_sym_text_token3] = ACTIONS(163), + [aux_sym_keyword_token1] = ACTIONS(85), + [anon_sym_LBRACE_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(89), + [anon_sym_ATphp] = ACTIONS(91), + [aux_sym_attribute_token1] = ACTIONS(93), + [aux_sym__inline_directive_token1] = ACTIONS(95), + [anon_sym_ATfragment] = ACTIONS(97), + [anon_sym_ATsection] = ACTIONS(99), + [anon_sym_ATonce] = ACTIONS(101), + [anon_sym_ATverbatim] = ACTIONS(103), + [anon_sym_ATpush] = ACTIONS(105), + [anon_sym_ATpushOnce] = ACTIONS(107), + [anon_sym_ATpushIf] = ACTIONS(109), + [anon_sym_ATprepend] = ACTIONS(111), + [anon_sym_ATprependOnce] = ACTIONS(113), + [anon_sym_ATelse] = ACTIONS(115), + [aux_sym_conditional_keyword_token1] = ACTIONS(117), + [anon_sym_ATif] = ACTIONS(119), + [anon_sym_ATunless] = ACTIONS(121), + [anon_sym_ATisset] = ACTIONS(123), + [anon_sym_ATempty] = ACTIONS(125), + [anon_sym_ATauth] = ACTIONS(127), + [anon_sym_ATguest] = ACTIONS(129), + [anon_sym_ATproduction] = ACTIONS(131), + [anon_sym_ATenv] = ACTIONS(133), + [anon_sym_AThasSection] = ACTIONS(135), + [anon_sym_ATsectionMissing] = ACTIONS(137), + [anon_sym_ATerror] = ACTIONS(139), + [aux_sym__custom_token1] = ACTIONS(141), + [aux_sym__custom_token2] = ACTIONS(143), + [anon_sym_ATswitch] = ACTIONS(145), + [aux_sym_loop_operator_token1] = ACTIONS(147), + [anon_sym_ATfor] = ACTIONS(149), + [anon_sym_ATforeach] = ACTIONS(151), + [anon_sym_ATforelse] = ACTIONS(153), + [anon_sym_ATwhile] = ACTIONS(155), + [anon_sym_ATpersist] = ACTIONS(157), + [anon_sym_ATteleport] = ACTIONS(159), + [anon_sym_ATvolt] = ACTIONS(161), + [aux_sym_text_token1] = ACTIONS(165), + [aux_sym_text_token2] = ACTIONS(165), + [aux_sym_text_token3] = ACTIONS(167), }, [137] = { [sym__definition] = STATE(1065), @@ -29522,48 +29923,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(67), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [138] = { [sym__definition] = STATE(1065), @@ -29616,48 +30017,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(103), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [139] = { [sym__definition] = STATE(1065), @@ -29710,48 +30111,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(88), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [140] = { [sym__definition] = STATE(1065), @@ -29804,48 +30205,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(75), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [141] = { [sym__definition] = STATE(1065), @@ -29898,48 +30299,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(115), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [142] = { [sym__definition] = STATE(1065), @@ -29992,48 +30393,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(86), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [143] = { [sym__definition] = STATE(1065), @@ -30086,48 +30487,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(111), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [144] = { [sym__definition] = STATE(1065), @@ -30180,48 +30581,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(107), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [145] = { [sym__definition] = STATE(1065), @@ -30274,48 +30675,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(113), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [146] = { [sym__definition] = STATE(1065), @@ -30368,48 +30769,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(78), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [147] = { [sym__definition] = STATE(1065), @@ -30462,48 +30863,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(105), [sym_text] = STATE(481), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(331), - [anon_sym_LBRACE_LBRACE] = ACTIONS(333), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(335), - [anon_sym_ATphp] = ACTIONS(337), - [aux_sym_attribute_token1] = ACTIONS(339), - [aux_sym__inline_directive_token1] = ACTIONS(341), - [anon_sym_ATfragment] = ACTIONS(343), - [anon_sym_ATsection] = ACTIONS(345), - [anon_sym_ATonce] = ACTIONS(347), - [anon_sym_ATverbatim] = ACTIONS(349), - [anon_sym_ATpush] = ACTIONS(351), - [anon_sym_ATpushOnce] = ACTIONS(353), - [anon_sym_ATpushIf] = ACTIONS(355), - [anon_sym_ATprepend] = ACTIONS(357), - [anon_sym_ATprependOnce] = ACTIONS(359), - [anon_sym_ATelse] = ACTIONS(361), - [aux_sym_conditional_keyword_token1] = ACTIONS(363), - [anon_sym_ATif] = ACTIONS(365), - [anon_sym_ATunless] = ACTIONS(367), - [anon_sym_ATisset] = ACTIONS(369), - [anon_sym_ATempty] = ACTIONS(371), - [anon_sym_ATauth] = ACTIONS(373), - [anon_sym_ATguest] = ACTIONS(375), - [anon_sym_ATproduction] = ACTIONS(377), - [anon_sym_ATenv] = ACTIONS(381), - [anon_sym_AThasSection] = ACTIONS(383), - [anon_sym_ATsectionMissing] = ACTIONS(385), - [anon_sym_ATerror] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATpersist] = ACTIONS(405), - [anon_sym_ATteleport] = ACTIONS(407), - [anon_sym_ATvolt] = ACTIONS(409), - [aux_sym_text_token1] = ACTIONS(411), - [aux_sym_text_token2] = ACTIONS(411), - [aux_sym_text_token3] = ACTIONS(411), + [aux_sym_keyword_token1] = ACTIONS(339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(343), + [anon_sym_ATphp] = ACTIONS(345), + [aux_sym_attribute_token1] = ACTIONS(347), + [aux_sym__inline_directive_token1] = ACTIONS(349), + [anon_sym_ATfragment] = ACTIONS(351), + [anon_sym_ATsection] = ACTIONS(353), + [anon_sym_ATonce] = ACTIONS(355), + [anon_sym_ATverbatim] = ACTIONS(357), + [anon_sym_ATpush] = ACTIONS(359), + [anon_sym_ATpushOnce] = ACTIONS(361), + [anon_sym_ATpushIf] = ACTIONS(363), + [anon_sym_ATprepend] = ACTIONS(365), + [anon_sym_ATprependOnce] = ACTIONS(367), + [anon_sym_ATelse] = ACTIONS(369), + [aux_sym_conditional_keyword_token1] = ACTIONS(371), + [anon_sym_ATif] = ACTIONS(373), + [anon_sym_ATunless] = ACTIONS(375), + [anon_sym_ATisset] = ACTIONS(377), + [anon_sym_ATempty] = ACTIONS(379), + [anon_sym_ATauth] = ACTIONS(381), + [anon_sym_ATguest] = ACTIONS(383), + [anon_sym_ATproduction] = ACTIONS(385), + [anon_sym_ATenv] = ACTIONS(389), + [anon_sym_AThasSection] = ACTIONS(391), + [anon_sym_ATsectionMissing] = ACTIONS(393), + [anon_sym_ATerror] = ACTIONS(395), + [aux_sym__custom_token1] = ACTIONS(397), + [aux_sym__custom_token2] = ACTIONS(399), + [anon_sym_ATswitch] = ACTIONS(401), + [aux_sym_loop_operator_token1] = ACTIONS(403), + [anon_sym_ATfor] = ACTIONS(405), + [anon_sym_ATforeach] = ACTIONS(407), + [anon_sym_ATforelse] = ACTIONS(409), + [anon_sym_ATwhile] = ACTIONS(411), + [anon_sym_ATpersist] = ACTIONS(413), + [anon_sym_ATteleport] = ACTIONS(415), + [anon_sym_ATvolt] = ACTIONS(417), + [aux_sym_text_token1] = ACTIONS(419), + [aux_sym_text_token2] = ACTIONS(419), + [aux_sym_text_token3] = ACTIONS(421), }, [148] = { [sym__definition] = STATE(2152), @@ -30555,47 +30956,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(356), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(2175), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(2227), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [149] = { [sym__definition] = STATE(2152), @@ -30647,47 +31048,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(324), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(2233), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(2287), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [150] = { [sym__definition] = STATE(2111), @@ -30739,47 +31140,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2293), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2347), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [151] = { [sym__definition] = STATE(2111), @@ -30831,47 +31232,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(156), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2313), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2369), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [152] = { [sym__definition] = STATE(2111), @@ -30923,47 +31324,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2315), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2371), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [153] = { [sym__definition] = STATE(2111), @@ -31015,47 +31416,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(152), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2317), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2373), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [154] = { [sym__definition] = STATE(2012), @@ -31107,47 +31508,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(2337), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(2393), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [155] = { [sym__definition] = STATE(2152), @@ -31199,47 +31600,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(2397), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(2455), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [156] = { [sym__definition] = STATE(2111), @@ -31291,47 +31692,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2399), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2457), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [157] = { [sym__definition] = STATE(2111), @@ -31383,47 +31784,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(158), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2401), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2459), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [158] = { [sym__definition] = STATE(2111), @@ -31475,47 +31876,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2403), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2461), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [159] = { [sym__definition] = STATE(2152), @@ -31567,47 +31968,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(2405), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(2463), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [160] = { [sym__definition] = STATE(2111), @@ -31659,47 +32060,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(162), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2403), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2461), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [161] = { [sym__definition] = STATE(2012), @@ -31751,47 +32152,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(2407), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(2465), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [162] = { [sym__definition] = STATE(2111), @@ -31843,47 +32244,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2409), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2467), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [163] = { [sym__definition] = STATE(2111), @@ -31935,47 +32336,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2411), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2469), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [164] = { [sym__definition] = STATE(2111), @@ -32027,47 +32428,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(150), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2399), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2457), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [165] = { [sym__definition] = STATE(2111), @@ -32119,47 +32520,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(171), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2411), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2469), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [166] = { [sym__definition] = STATE(2152), @@ -32211,47 +32612,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(159), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(2413), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(2471), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [167] = { [sym__definition] = STATE(2012), @@ -32303,47 +32704,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(161), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(2415), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(2473), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [168] = { [sym__definition] = STATE(2012), @@ -32395,47 +32796,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(154), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(2417), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(2475), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [169] = { [sym__definition] = STATE(2012), @@ -32487,47 +32888,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(178), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(2419), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(2477), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [170] = { [sym__definition] = STATE(2152), @@ -32579,47 +32980,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(155), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(2421), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(2479), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [171] = { [sym__definition] = STATE(2111), @@ -32671,47 +33072,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2423), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2481), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [172] = { [sym__definition] = STATE(2111), @@ -32763,47 +33164,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2425), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2483), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [173] = { [sym__definition] = STATE(2152), @@ -32855,47 +33256,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(179), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(2427), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(2485), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [174] = { [sym__definition] = STATE(2111), @@ -32947,47 +33348,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(163), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2429), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2487), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [175] = { [sym__definition] = STATE(2012), @@ -33039,47 +33440,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(313), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(2431), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(2489), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [176] = { [sym__definition] = STATE(1102), @@ -33131,47 +33532,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(176), [sym_text] = STATE(1732), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2433), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2436), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2439), - [anon_sym_ATphp] = ACTIONS(2442), - [aux_sym_attribute_token1] = ACTIONS(2445), - [aux_sym__inline_directive_token1] = ACTIONS(2448), - [anon_sym_ATfragment] = ACTIONS(2451), - [anon_sym_ATsection] = ACTIONS(2454), - [anon_sym_ATonce] = ACTIONS(2457), - [anon_sym_ATverbatim] = ACTIONS(2460), - [anon_sym_ATpush] = ACTIONS(2463), - [anon_sym_ATpushOnce] = ACTIONS(2466), - [anon_sym_ATpushIf] = ACTIONS(2469), - [anon_sym_ATprepend] = ACTIONS(2472), - [anon_sym_ATprependOnce] = ACTIONS(2475), - [anon_sym_ATif] = ACTIONS(2478), - [anon_sym_ATunless] = ACTIONS(2481), - [anon_sym_ATisset] = ACTIONS(2484), - [anon_sym_ATempty] = ACTIONS(2487), - [anon_sym_ATauth] = ACTIONS(2490), - [anon_sym_ATguest] = ACTIONS(2493), - [anon_sym_ATproduction] = ACTIONS(2496), - [anon_sym_ATenv] = ACTIONS(2499), - [anon_sym_AThasSection] = ACTIONS(2502), - [anon_sym_ATsectionMissing] = ACTIONS(2505), - [anon_sym_ATerror] = ACTIONS(2508), - [aux_sym__custom_token1] = ACTIONS(2511), - [aux_sym__custom_token2] = ACTIONS(2514), - [anon_sym_ATswitch] = ACTIONS(2517), - [aux_sym_loop_operator_token1] = ACTIONS(2520), - [anon_sym_ATfor] = ACTIONS(2523), - [anon_sym_ATforeach] = ACTIONS(2526), - [anon_sym_ATforelse] = ACTIONS(2529), - [anon_sym_ATwhile] = ACTIONS(2532), - [anon_sym_ATpersist] = ACTIONS(2535), - [anon_sym_ATteleport] = ACTIONS(2538), - [anon_sym_ATendteleport] = ACTIONS(2541), - [anon_sym_ATvolt] = ACTIONS(2543), - [aux_sym_text_token1] = ACTIONS(2546), - [aux_sym_text_token2] = ACTIONS(2546), - [aux_sym_text_token3] = ACTIONS(2546), + [aux_sym_keyword_token1] = ACTIONS(2491), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2494), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2497), + [anon_sym_ATphp] = ACTIONS(2500), + [aux_sym_attribute_token1] = ACTIONS(2503), + [aux_sym__inline_directive_token1] = ACTIONS(2506), + [anon_sym_ATfragment] = ACTIONS(2509), + [anon_sym_ATsection] = ACTIONS(2512), + [anon_sym_ATonce] = ACTIONS(2515), + [anon_sym_ATverbatim] = ACTIONS(2518), + [anon_sym_ATpush] = ACTIONS(2521), + [anon_sym_ATpushOnce] = ACTIONS(2524), + [anon_sym_ATpushIf] = ACTIONS(2527), + [anon_sym_ATprepend] = ACTIONS(2530), + [anon_sym_ATprependOnce] = ACTIONS(2533), + [anon_sym_ATif] = ACTIONS(2536), + [anon_sym_ATunless] = ACTIONS(2539), + [anon_sym_ATisset] = ACTIONS(2542), + [anon_sym_ATempty] = ACTIONS(2545), + [anon_sym_ATauth] = ACTIONS(2548), + [anon_sym_ATguest] = ACTIONS(2551), + [anon_sym_ATproduction] = ACTIONS(2554), + [anon_sym_ATenv] = ACTIONS(2557), + [anon_sym_AThasSection] = ACTIONS(2560), + [anon_sym_ATsectionMissing] = ACTIONS(2563), + [anon_sym_ATerror] = ACTIONS(2566), + [aux_sym__custom_token1] = ACTIONS(2569), + [aux_sym__custom_token2] = ACTIONS(2572), + [anon_sym_ATswitch] = ACTIONS(2575), + [aux_sym_loop_operator_token1] = ACTIONS(2578), + [anon_sym_ATfor] = ACTIONS(2581), + [anon_sym_ATforeach] = ACTIONS(2584), + [anon_sym_ATforelse] = ACTIONS(2587), + [anon_sym_ATwhile] = ACTIONS(2590), + [anon_sym_ATpersist] = ACTIONS(2593), + [anon_sym_ATteleport] = ACTIONS(2596), + [anon_sym_ATendteleport] = ACTIONS(2599), + [anon_sym_ATvolt] = ACTIONS(2601), + [aux_sym_text_token1] = ACTIONS(2604), + [aux_sym_text_token2] = ACTIONS(2604), + [aux_sym_text_token3] = ACTIONS(2607), }, [177] = { [sym__definition] = STATE(2111), @@ -33223,47 +33624,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(172), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2315), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2371), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [178] = { [sym__definition] = STATE(2012), @@ -33315,47 +33716,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(2549), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(2610), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [179] = { [sym__definition] = STATE(2152), @@ -33407,47 +33808,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(2551), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(2612), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [180] = { [sym__definition] = STATE(2142), @@ -33499,47 +33900,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(295), [sym_text] = STATE(2039), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2553), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2555), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2557), - [anon_sym_ATphp] = ACTIONS(2559), - [aux_sym_attribute_token1] = ACTIONS(2561), - [aux_sym__inline_directive_token1] = ACTIONS(2563), - [anon_sym_ATfragment] = ACTIONS(2565), - [anon_sym_ATendfragment] = ACTIONS(2567), - [anon_sym_ATsection] = ACTIONS(2569), - [anon_sym_ATonce] = ACTIONS(2571), - [anon_sym_ATverbatim] = ACTIONS(2573), - [anon_sym_ATpush] = ACTIONS(2575), - [anon_sym_ATpushOnce] = ACTIONS(2577), - [anon_sym_ATpushIf] = ACTIONS(2579), - [anon_sym_ATprepend] = ACTIONS(2581), - [anon_sym_ATprependOnce] = ACTIONS(2583), - [anon_sym_ATif] = ACTIONS(2585), - [anon_sym_ATunless] = ACTIONS(2587), - [anon_sym_ATisset] = ACTIONS(2589), - [anon_sym_ATempty] = ACTIONS(2591), - [anon_sym_ATauth] = ACTIONS(2593), - [anon_sym_ATguest] = ACTIONS(2595), - [anon_sym_ATproduction] = ACTIONS(2597), - [anon_sym_ATenv] = ACTIONS(2599), - [anon_sym_AThasSection] = ACTIONS(2601), - [anon_sym_ATsectionMissing] = ACTIONS(2603), - [anon_sym_ATerror] = ACTIONS(2605), - [aux_sym__custom_token1] = ACTIONS(2607), - [aux_sym__custom_token2] = ACTIONS(2609), - [anon_sym_ATswitch] = ACTIONS(2611), - [aux_sym_loop_operator_token1] = ACTIONS(2613), - [anon_sym_ATfor] = ACTIONS(2615), - [anon_sym_ATforeach] = ACTIONS(2617), - [anon_sym_ATforelse] = ACTIONS(2619), - [anon_sym_ATwhile] = ACTIONS(2621), - [anon_sym_ATpersist] = ACTIONS(2623), - [anon_sym_ATteleport] = ACTIONS(2625), - [anon_sym_ATvolt] = ACTIONS(2627), - [aux_sym_text_token1] = ACTIONS(2629), - [aux_sym_text_token2] = ACTIONS(2629), - [aux_sym_text_token3] = ACTIONS(2629), + [aux_sym_keyword_token1] = ACTIONS(2614), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2616), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2618), + [anon_sym_ATphp] = ACTIONS(2620), + [aux_sym_attribute_token1] = ACTIONS(2622), + [aux_sym__inline_directive_token1] = ACTIONS(2624), + [anon_sym_ATfragment] = ACTIONS(2626), + [anon_sym_ATendfragment] = ACTIONS(2628), + [anon_sym_ATsection] = ACTIONS(2630), + [anon_sym_ATonce] = ACTIONS(2632), + [anon_sym_ATverbatim] = ACTIONS(2634), + [anon_sym_ATpush] = ACTIONS(2636), + [anon_sym_ATpushOnce] = ACTIONS(2638), + [anon_sym_ATpushIf] = ACTIONS(2640), + [anon_sym_ATprepend] = ACTIONS(2642), + [anon_sym_ATprependOnce] = ACTIONS(2644), + [anon_sym_ATif] = ACTIONS(2646), + [anon_sym_ATunless] = ACTIONS(2648), + [anon_sym_ATisset] = ACTIONS(2650), + [anon_sym_ATempty] = ACTIONS(2652), + [anon_sym_ATauth] = ACTIONS(2654), + [anon_sym_ATguest] = ACTIONS(2656), + [anon_sym_ATproduction] = ACTIONS(2658), + [anon_sym_ATenv] = ACTIONS(2660), + [anon_sym_AThasSection] = ACTIONS(2662), + [anon_sym_ATsectionMissing] = ACTIONS(2664), + [anon_sym_ATerror] = ACTIONS(2666), + [aux_sym__custom_token1] = ACTIONS(2668), + [aux_sym__custom_token2] = ACTIONS(2670), + [anon_sym_ATswitch] = ACTIONS(2672), + [aux_sym_loop_operator_token1] = ACTIONS(2674), + [anon_sym_ATfor] = ACTIONS(2676), + [anon_sym_ATforeach] = ACTIONS(2678), + [anon_sym_ATforelse] = ACTIONS(2680), + [anon_sym_ATwhile] = ACTIONS(2682), + [anon_sym_ATpersist] = ACTIONS(2684), + [anon_sym_ATteleport] = ACTIONS(2686), + [anon_sym_ATvolt] = ACTIONS(2688), + [aux_sym_text_token1] = ACTIONS(2690), + [aux_sym_text_token2] = ACTIONS(2690), + [aux_sym_text_token3] = ACTIONS(2692), }, [181] = { [sym__definition] = STATE(2111), @@ -33591,47 +33992,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(182), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2631), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2694), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [182] = { [sym__definition] = STATE(2111), @@ -33683,47 +34084,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2633), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2696), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [183] = { [sym__definition] = STATE(2111), @@ -33775,47 +34176,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(184), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2633), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2696), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [184] = { [sym__definition] = STATE(2111), @@ -33867,47 +34268,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2635), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2698), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [185] = { [sym__definition] = STATE(2152), @@ -33959,47 +34360,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(2637), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(2700), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [186] = { [sym__definition] = STATE(2012), @@ -34051,47 +34452,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(2639), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(2702), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [187] = { [sym__definition] = STATE(2012), @@ -34143,47 +34544,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(197), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(2641), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(2704), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [188] = { [sym__definition] = STATE(2152), @@ -34235,47 +34636,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(185), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(2643), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(2706), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [189] = { [sym__definition] = STATE(2152), @@ -34327,47 +34728,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(2645), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(2708), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [190] = { [sym__definition] = STATE(2012), @@ -34419,47 +34820,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(186), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(2647), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(2710), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [191] = { [sym__definition] = STATE(2152), @@ -34511,47 +34912,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(198), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(2649), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(2712), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [192] = { [sym__definition] = STATE(2111), @@ -34603,47 +35004,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2651), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2714), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [193] = { [sym__definition] = STATE(2111), @@ -34695,47 +35096,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(192), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2653), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2716), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [194] = { [sym__definition] = STATE(2111), @@ -34787,47 +35188,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2653), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2716), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [195] = { [sym__definition] = STATE(2077), @@ -34879,47 +35280,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(216), [sym_text] = STATE(1662), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2655), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2657), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2659), - [anon_sym_ATphp] = ACTIONS(2661), - [aux_sym_attribute_token1] = ACTIONS(2663), - [aux_sym__inline_directive_token1] = ACTIONS(2665), - [anon_sym_ATfragment] = ACTIONS(2667), - [anon_sym_ATsection] = ACTIONS(2669), - [anon_sym_ATendsection] = ACTIONS(2671), - [anon_sym_ATonce] = ACTIONS(2673), - [anon_sym_ATverbatim] = ACTIONS(2675), - [anon_sym_ATpush] = ACTIONS(2677), - [anon_sym_ATpushOnce] = ACTIONS(2679), - [anon_sym_ATpushIf] = ACTIONS(2681), - [anon_sym_ATprepend] = ACTIONS(2683), - [anon_sym_ATprependOnce] = ACTIONS(2685), - [anon_sym_ATif] = ACTIONS(2687), - [anon_sym_ATunless] = ACTIONS(2689), - [anon_sym_ATisset] = ACTIONS(2691), - [anon_sym_ATempty] = ACTIONS(2693), - [anon_sym_ATauth] = ACTIONS(2695), - [anon_sym_ATguest] = ACTIONS(2697), - [anon_sym_ATproduction] = ACTIONS(2699), - [anon_sym_ATenv] = ACTIONS(2701), - [anon_sym_AThasSection] = ACTIONS(2703), - [anon_sym_ATsectionMissing] = ACTIONS(2705), - [anon_sym_ATerror] = ACTIONS(2707), - [aux_sym__custom_token1] = ACTIONS(2709), - [aux_sym__custom_token2] = ACTIONS(2711), - [anon_sym_ATswitch] = ACTIONS(2713), - [aux_sym_loop_operator_token1] = ACTIONS(2715), - [anon_sym_ATfor] = ACTIONS(2717), - [anon_sym_ATforeach] = ACTIONS(2719), - [anon_sym_ATforelse] = ACTIONS(2721), - [anon_sym_ATwhile] = ACTIONS(2723), - [anon_sym_ATpersist] = ACTIONS(2725), - [anon_sym_ATteleport] = ACTIONS(2727), - [anon_sym_ATvolt] = ACTIONS(2729), - [aux_sym_text_token1] = ACTIONS(2731), - [aux_sym_text_token2] = ACTIONS(2731), - [aux_sym_text_token3] = ACTIONS(2731), + [aux_sym_keyword_token1] = ACTIONS(2718), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2720), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2722), + [anon_sym_ATphp] = ACTIONS(2724), + [aux_sym_attribute_token1] = ACTIONS(2726), + [aux_sym__inline_directive_token1] = ACTIONS(2728), + [anon_sym_ATfragment] = ACTIONS(2730), + [anon_sym_ATsection] = ACTIONS(2732), + [anon_sym_ATendsection] = ACTIONS(2734), + [anon_sym_ATonce] = ACTIONS(2736), + [anon_sym_ATverbatim] = ACTIONS(2738), + [anon_sym_ATpush] = ACTIONS(2740), + [anon_sym_ATpushOnce] = ACTIONS(2742), + [anon_sym_ATpushIf] = ACTIONS(2744), + [anon_sym_ATprepend] = ACTIONS(2746), + [anon_sym_ATprependOnce] = ACTIONS(2748), + [anon_sym_ATif] = ACTIONS(2750), + [anon_sym_ATunless] = ACTIONS(2752), + [anon_sym_ATisset] = ACTIONS(2754), + [anon_sym_ATempty] = ACTIONS(2756), + [anon_sym_ATauth] = ACTIONS(2758), + [anon_sym_ATguest] = ACTIONS(2760), + [anon_sym_ATproduction] = ACTIONS(2762), + [anon_sym_ATenv] = ACTIONS(2764), + [anon_sym_AThasSection] = ACTIONS(2766), + [anon_sym_ATsectionMissing] = ACTIONS(2768), + [anon_sym_ATerror] = ACTIONS(2770), + [aux_sym__custom_token1] = ACTIONS(2772), + [aux_sym__custom_token2] = ACTIONS(2774), + [anon_sym_ATswitch] = ACTIONS(2776), + [aux_sym_loop_operator_token1] = ACTIONS(2778), + [anon_sym_ATfor] = ACTIONS(2780), + [anon_sym_ATforeach] = ACTIONS(2782), + [anon_sym_ATforelse] = ACTIONS(2784), + [anon_sym_ATwhile] = ACTIONS(2786), + [anon_sym_ATpersist] = ACTIONS(2788), + [anon_sym_ATteleport] = ACTIONS(2790), + [anon_sym_ATvolt] = ACTIONS(2792), + [aux_sym_text_token1] = ACTIONS(2794), + [aux_sym_text_token2] = ACTIONS(2794), + [aux_sym_text_token3] = ACTIONS(2796), }, [196] = { [sym__definition] = STATE(2111), @@ -34971,47 +35372,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(194), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2733), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2798), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [197] = { [sym__definition] = STATE(2012), @@ -35063,47 +35464,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(2735), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(2800), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [198] = { [sym__definition] = STATE(2152), @@ -35155,47 +35556,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(2737), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(2802), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [199] = { [sym__definition] = STATE(2012), @@ -35247,47 +35648,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(2739), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(2804), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [200] = { [sym__definition] = STATE(1207), @@ -35339,47 +35740,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(344), [sym_text] = STATE(1909), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2741), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2743), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2745), - [anon_sym_ATphp] = ACTIONS(2747), - [aux_sym_attribute_token1] = ACTIONS(2749), - [aux_sym__inline_directive_token1] = ACTIONS(2751), - [anon_sym_ATfragment] = ACTIONS(2753), - [anon_sym_ATsection] = ACTIONS(2755), - [anon_sym_ATonce] = ACTIONS(2757), - [anon_sym_ATverbatim] = ACTIONS(2759), - [anon_sym_ATpush] = ACTIONS(2761), - [anon_sym_ATpushOnce] = ACTIONS(2763), - [anon_sym_ATpushIf] = ACTIONS(2765), - [anon_sym_ATprepend] = ACTIONS(2767), - [anon_sym_ATprependOnce] = ACTIONS(2769), - [anon_sym_ATif] = ACTIONS(2771), - [anon_sym_ATunless] = ACTIONS(2773), - [anon_sym_ATisset] = ACTIONS(2775), - [anon_sym_ATempty] = ACTIONS(2777), - [anon_sym_ATauth] = ACTIONS(2779), - [anon_sym_ATguest] = ACTIONS(2781), - [anon_sym_ATproduction] = ACTIONS(2783), - [anon_sym_ATenv] = ACTIONS(2785), - [anon_sym_AThasSection] = ACTIONS(2787), - [anon_sym_ATsectionMissing] = ACTIONS(2789), - [anon_sym_ATerror] = ACTIONS(2791), - [aux_sym__custom_token1] = ACTIONS(2793), - [aux_sym__custom_token2] = ACTIONS(2795), - [anon_sym_ATswitch] = ACTIONS(2797), - [anon_sym_ATbreak] = ACTIONS(2567), - [aux_sym_loop_operator_token1] = ACTIONS(2799), - [anon_sym_ATfor] = ACTIONS(2801), - [anon_sym_ATforeach] = ACTIONS(2803), - [anon_sym_ATforelse] = ACTIONS(2805), - [anon_sym_ATwhile] = ACTIONS(2807), - [anon_sym_ATpersist] = ACTIONS(2809), - [anon_sym_ATteleport] = ACTIONS(2811), - [anon_sym_ATvolt] = ACTIONS(2813), - [aux_sym_text_token1] = ACTIONS(2815), - [aux_sym_text_token2] = ACTIONS(2815), - [aux_sym_text_token3] = ACTIONS(2815), + [aux_sym_keyword_token1] = ACTIONS(2806), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2808), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2810), + [anon_sym_ATphp] = ACTIONS(2812), + [aux_sym_attribute_token1] = ACTIONS(2814), + [aux_sym__inline_directive_token1] = ACTIONS(2816), + [anon_sym_ATfragment] = ACTIONS(2818), + [anon_sym_ATsection] = ACTIONS(2820), + [anon_sym_ATonce] = ACTIONS(2822), + [anon_sym_ATverbatim] = ACTIONS(2824), + [anon_sym_ATpush] = ACTIONS(2826), + [anon_sym_ATpushOnce] = ACTIONS(2828), + [anon_sym_ATpushIf] = ACTIONS(2830), + [anon_sym_ATprepend] = ACTIONS(2832), + [anon_sym_ATprependOnce] = ACTIONS(2834), + [anon_sym_ATif] = ACTIONS(2836), + [anon_sym_ATunless] = ACTIONS(2838), + [anon_sym_ATisset] = ACTIONS(2840), + [anon_sym_ATempty] = ACTIONS(2842), + [anon_sym_ATauth] = ACTIONS(2844), + [anon_sym_ATguest] = ACTIONS(2846), + [anon_sym_ATproduction] = ACTIONS(2848), + [anon_sym_ATenv] = ACTIONS(2850), + [anon_sym_AThasSection] = ACTIONS(2852), + [anon_sym_ATsectionMissing] = ACTIONS(2854), + [anon_sym_ATerror] = ACTIONS(2856), + [aux_sym__custom_token1] = ACTIONS(2858), + [aux_sym__custom_token2] = ACTIONS(2860), + [anon_sym_ATswitch] = ACTIONS(2862), + [anon_sym_ATbreak] = ACTIONS(2628), + [aux_sym_loop_operator_token1] = ACTIONS(2864), + [anon_sym_ATfor] = ACTIONS(2866), + [anon_sym_ATforeach] = ACTIONS(2868), + [anon_sym_ATforelse] = ACTIONS(2870), + [anon_sym_ATwhile] = ACTIONS(2872), + [anon_sym_ATpersist] = ACTIONS(2874), + [anon_sym_ATteleport] = ACTIONS(2876), + [anon_sym_ATvolt] = ACTIONS(2878), + [aux_sym_text_token1] = ACTIONS(2880), + [aux_sym_text_token2] = ACTIONS(2880), + [aux_sym_text_token3] = ACTIONS(2882), }, [201] = { [sym__definition] = STATE(2111), @@ -35431,47 +35832,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2817), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2884), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [202] = { [sym__definition] = STATE(1207), @@ -35523,47 +35924,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(200), [sym_text] = STATE(1909), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2741), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2743), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2745), - [anon_sym_ATphp] = ACTIONS(2747), - [aux_sym_attribute_token1] = ACTIONS(2749), - [aux_sym__inline_directive_token1] = ACTIONS(2751), - [anon_sym_ATfragment] = ACTIONS(2753), - [anon_sym_ATsection] = ACTIONS(2755), - [anon_sym_ATonce] = ACTIONS(2757), - [anon_sym_ATverbatim] = ACTIONS(2759), - [anon_sym_ATpush] = ACTIONS(2761), - [anon_sym_ATpushOnce] = ACTIONS(2763), - [anon_sym_ATpushIf] = ACTIONS(2765), - [anon_sym_ATprepend] = ACTIONS(2767), - [anon_sym_ATprependOnce] = ACTIONS(2769), - [anon_sym_ATif] = ACTIONS(2771), - [anon_sym_ATunless] = ACTIONS(2773), - [anon_sym_ATisset] = ACTIONS(2775), - [anon_sym_ATempty] = ACTIONS(2777), - [anon_sym_ATauth] = ACTIONS(2779), - [anon_sym_ATguest] = ACTIONS(2781), - [anon_sym_ATproduction] = ACTIONS(2783), - [anon_sym_ATenv] = ACTIONS(2785), - [anon_sym_AThasSection] = ACTIONS(2787), - [anon_sym_ATsectionMissing] = ACTIONS(2789), - [anon_sym_ATerror] = ACTIONS(2791), - [aux_sym__custom_token1] = ACTIONS(2793), - [aux_sym__custom_token2] = ACTIONS(2795), - [anon_sym_ATswitch] = ACTIONS(2797), - [anon_sym_ATbreak] = ACTIONS(2671), - [aux_sym_loop_operator_token1] = ACTIONS(2799), - [anon_sym_ATfor] = ACTIONS(2801), - [anon_sym_ATforeach] = ACTIONS(2803), - [anon_sym_ATforelse] = ACTIONS(2805), - [anon_sym_ATwhile] = ACTIONS(2807), - [anon_sym_ATpersist] = ACTIONS(2809), - [anon_sym_ATteleport] = ACTIONS(2811), - [anon_sym_ATvolt] = ACTIONS(2813), - [aux_sym_text_token1] = ACTIONS(2815), - [aux_sym_text_token2] = ACTIONS(2815), - [aux_sym_text_token3] = ACTIONS(2815), + [aux_sym_keyword_token1] = ACTIONS(2806), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2808), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2810), + [anon_sym_ATphp] = ACTIONS(2812), + [aux_sym_attribute_token1] = ACTIONS(2814), + [aux_sym__inline_directive_token1] = ACTIONS(2816), + [anon_sym_ATfragment] = ACTIONS(2818), + [anon_sym_ATsection] = ACTIONS(2820), + [anon_sym_ATonce] = ACTIONS(2822), + [anon_sym_ATverbatim] = ACTIONS(2824), + [anon_sym_ATpush] = ACTIONS(2826), + [anon_sym_ATpushOnce] = ACTIONS(2828), + [anon_sym_ATpushIf] = ACTIONS(2830), + [anon_sym_ATprepend] = ACTIONS(2832), + [anon_sym_ATprependOnce] = ACTIONS(2834), + [anon_sym_ATif] = ACTIONS(2836), + [anon_sym_ATunless] = ACTIONS(2838), + [anon_sym_ATisset] = ACTIONS(2840), + [anon_sym_ATempty] = ACTIONS(2842), + [anon_sym_ATauth] = ACTIONS(2844), + [anon_sym_ATguest] = ACTIONS(2846), + [anon_sym_ATproduction] = ACTIONS(2848), + [anon_sym_ATenv] = ACTIONS(2850), + [anon_sym_AThasSection] = ACTIONS(2852), + [anon_sym_ATsectionMissing] = ACTIONS(2854), + [anon_sym_ATerror] = ACTIONS(2856), + [aux_sym__custom_token1] = ACTIONS(2858), + [aux_sym__custom_token2] = ACTIONS(2860), + [anon_sym_ATswitch] = ACTIONS(2862), + [anon_sym_ATbreak] = ACTIONS(2734), + [aux_sym_loop_operator_token1] = ACTIONS(2864), + [anon_sym_ATfor] = ACTIONS(2866), + [anon_sym_ATforeach] = ACTIONS(2868), + [anon_sym_ATforelse] = ACTIONS(2870), + [anon_sym_ATwhile] = ACTIONS(2872), + [anon_sym_ATpersist] = ACTIONS(2874), + [anon_sym_ATteleport] = ACTIONS(2876), + [anon_sym_ATvolt] = ACTIONS(2878), + [aux_sym_text_token1] = ACTIONS(2880), + [aux_sym_text_token2] = ACTIONS(2880), + [aux_sym_text_token3] = ACTIONS(2882), }, [203] = { [sym__definition] = STATE(2152), @@ -35615,47 +36016,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(189), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(2819), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(2886), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [204] = { [sym__definition] = STATE(2012), @@ -35707,47 +36108,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(199), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(2821), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(2888), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [205] = { [sym__definition] = STATE(2111), @@ -35799,47 +36200,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2823), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(2890), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [206] = { [sym__definition] = STATE(2111), @@ -35891,47 +36292,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2825), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2828), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2831), - [anon_sym_ATphp] = ACTIONS(2834), - [aux_sym_attribute_token1] = ACTIONS(2837), - [aux_sym__inline_directive_token1] = ACTIONS(2840), - [anon_sym_ATfragment] = ACTIONS(2843), - [anon_sym_ATsection] = ACTIONS(2846), - [anon_sym_ATonce] = ACTIONS(2849), - [anon_sym_ATverbatim] = ACTIONS(2852), - [anon_sym_ATpush] = ACTIONS(2855), - [anon_sym_ATpushOnce] = ACTIONS(2858), - [anon_sym_ATpushIf] = ACTIONS(2861), - [anon_sym_ATprepend] = ACTIONS(2864), - [anon_sym_ATprependOnce] = ACTIONS(2867), - [anon_sym_ATif] = ACTIONS(2870), - [anon_sym_ATunless] = ACTIONS(2873), - [anon_sym_ATisset] = ACTIONS(2876), - [anon_sym_ATempty] = ACTIONS(2879), - [anon_sym_ATauth] = ACTIONS(2882), - [anon_sym_ATguest] = ACTIONS(2885), - [anon_sym_ATproduction] = ACTIONS(2888), - [anon_sym_ATenv] = ACTIONS(2891), - [anon_sym_AThasSection] = ACTIONS(2894), - [anon_sym_ATsectionMissing] = ACTIONS(2897), - [anon_sym_ATerror] = ACTIONS(2900), - [aux_sym__custom_token1] = ACTIONS(2903), - [aux_sym__custom_token2] = ACTIONS(2906), - [anon_sym_ATswitch] = ACTIONS(2909), - [anon_sym_ATendswitch] = ACTIONS(2912), - [aux_sym_loop_operator_token1] = ACTIONS(2914), - [anon_sym_ATfor] = ACTIONS(2917), - [anon_sym_ATforeach] = ACTIONS(2920), - [anon_sym_ATforelse] = ACTIONS(2923), - [anon_sym_ATwhile] = ACTIONS(2926), - [anon_sym_ATpersist] = ACTIONS(2929), - [anon_sym_ATteleport] = ACTIONS(2932), - [anon_sym_ATvolt] = ACTIONS(2935), - [aux_sym_text_token1] = ACTIONS(2938), - [aux_sym_text_token2] = ACTIONS(2938), - [aux_sym_text_token3] = ACTIONS(2938), + [aux_sym_keyword_token1] = ACTIONS(2892), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2895), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2898), + [anon_sym_ATphp] = ACTIONS(2901), + [aux_sym_attribute_token1] = ACTIONS(2904), + [aux_sym__inline_directive_token1] = ACTIONS(2907), + [anon_sym_ATfragment] = ACTIONS(2910), + [anon_sym_ATsection] = ACTIONS(2913), + [anon_sym_ATonce] = ACTIONS(2916), + [anon_sym_ATverbatim] = ACTIONS(2919), + [anon_sym_ATpush] = ACTIONS(2922), + [anon_sym_ATpushOnce] = ACTIONS(2925), + [anon_sym_ATpushIf] = ACTIONS(2928), + [anon_sym_ATprepend] = ACTIONS(2931), + [anon_sym_ATprependOnce] = ACTIONS(2934), + [anon_sym_ATif] = ACTIONS(2937), + [anon_sym_ATunless] = ACTIONS(2940), + [anon_sym_ATisset] = ACTIONS(2943), + [anon_sym_ATempty] = ACTIONS(2946), + [anon_sym_ATauth] = ACTIONS(2949), + [anon_sym_ATguest] = ACTIONS(2952), + [anon_sym_ATproduction] = ACTIONS(2955), + [anon_sym_ATenv] = ACTIONS(2958), + [anon_sym_AThasSection] = ACTIONS(2961), + [anon_sym_ATsectionMissing] = ACTIONS(2964), + [anon_sym_ATerror] = ACTIONS(2967), + [aux_sym__custom_token1] = ACTIONS(2970), + [aux_sym__custom_token2] = ACTIONS(2973), + [anon_sym_ATswitch] = ACTIONS(2976), + [anon_sym_ATendswitch] = ACTIONS(2979), + [aux_sym_loop_operator_token1] = ACTIONS(2981), + [anon_sym_ATfor] = ACTIONS(2984), + [anon_sym_ATforeach] = ACTIONS(2987), + [anon_sym_ATforelse] = ACTIONS(2990), + [anon_sym_ATwhile] = ACTIONS(2993), + [anon_sym_ATpersist] = ACTIONS(2996), + [anon_sym_ATteleport] = ACTIONS(2999), + [anon_sym_ATvolt] = ACTIONS(3002), + [aux_sym_text_token1] = ACTIONS(3005), + [aux_sym_text_token2] = ACTIONS(3005), + [aux_sym_text_token3] = ACTIONS(3008), }, [207] = { [sym__definition] = STATE(2111), @@ -35983,47 +36384,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(208), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2941), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3011), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [208] = { [sym__definition] = STATE(2111), @@ -36075,47 +36476,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2943), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3013), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [209] = { [sym__definition] = STATE(2111), @@ -36167,47 +36568,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(210), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2943), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3013), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [210] = { [sym__definition] = STATE(2111), @@ -36259,47 +36660,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(2945), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3015), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [211] = { [sym__definition] = STATE(2012), @@ -36351,47 +36752,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2947), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2950), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2953), - [anon_sym_ATphp] = ACTIONS(2956), - [aux_sym_attribute_token1] = ACTIONS(2959), - [aux_sym__inline_directive_token1] = ACTIONS(2962), - [anon_sym_ATfragment] = ACTIONS(2965), - [anon_sym_ATsection] = ACTIONS(2968), - [anon_sym_ATonce] = ACTIONS(2971), - [anon_sym_ATendonce] = ACTIONS(2541), - [anon_sym_ATverbatim] = ACTIONS(2974), - [anon_sym_ATpush] = ACTIONS(2977), - [anon_sym_ATpushOnce] = ACTIONS(2980), - [anon_sym_ATpushIf] = ACTIONS(2983), - [anon_sym_ATprepend] = ACTIONS(2986), - [anon_sym_ATprependOnce] = ACTIONS(2989), - [anon_sym_ATif] = ACTIONS(2992), - [anon_sym_ATunless] = ACTIONS(2995), - [anon_sym_ATisset] = ACTIONS(2998), - [anon_sym_ATempty] = ACTIONS(3001), - [anon_sym_ATauth] = ACTIONS(3004), - [anon_sym_ATguest] = ACTIONS(3007), - [anon_sym_ATproduction] = ACTIONS(3010), - [anon_sym_ATenv] = ACTIONS(3013), - [anon_sym_AThasSection] = ACTIONS(3016), - [anon_sym_ATsectionMissing] = ACTIONS(3019), - [anon_sym_ATerror] = ACTIONS(3022), - [aux_sym__custom_token1] = ACTIONS(3025), - [aux_sym__custom_token2] = ACTIONS(3028), - [anon_sym_ATswitch] = ACTIONS(3031), - [aux_sym_loop_operator_token1] = ACTIONS(3034), - [anon_sym_ATfor] = ACTIONS(3037), - [anon_sym_ATforeach] = ACTIONS(3040), - [anon_sym_ATforelse] = ACTIONS(3043), - [anon_sym_ATwhile] = ACTIONS(3046), - [anon_sym_ATpersist] = ACTIONS(3049), - [anon_sym_ATteleport] = ACTIONS(3052), - [anon_sym_ATvolt] = ACTIONS(3055), - [aux_sym_text_token1] = ACTIONS(3058), - [aux_sym_text_token2] = ACTIONS(3058), - [aux_sym_text_token3] = ACTIONS(3058), + [aux_sym_keyword_token1] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3020), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3023), + [anon_sym_ATphp] = ACTIONS(3026), + [aux_sym_attribute_token1] = ACTIONS(3029), + [aux_sym__inline_directive_token1] = ACTIONS(3032), + [anon_sym_ATfragment] = ACTIONS(3035), + [anon_sym_ATsection] = ACTIONS(3038), + [anon_sym_ATonce] = ACTIONS(3041), + [anon_sym_ATendonce] = ACTIONS(2599), + [anon_sym_ATverbatim] = ACTIONS(3044), + [anon_sym_ATpush] = ACTIONS(3047), + [anon_sym_ATpushOnce] = ACTIONS(3050), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3056), + [anon_sym_ATprependOnce] = ACTIONS(3059), + [anon_sym_ATif] = ACTIONS(3062), + [anon_sym_ATunless] = ACTIONS(3065), + [anon_sym_ATisset] = ACTIONS(3068), + [anon_sym_ATempty] = ACTIONS(3071), + [anon_sym_ATauth] = ACTIONS(3074), + [anon_sym_ATguest] = ACTIONS(3077), + [anon_sym_ATproduction] = ACTIONS(3080), + [anon_sym_ATenv] = ACTIONS(3083), + [anon_sym_AThasSection] = ACTIONS(3086), + [anon_sym_ATsectionMissing] = ACTIONS(3089), + [anon_sym_ATerror] = ACTIONS(3092), + [aux_sym__custom_token1] = ACTIONS(3095), + [aux_sym__custom_token2] = ACTIONS(3098), + [anon_sym_ATswitch] = ACTIONS(3101), + [aux_sym_loop_operator_token1] = ACTIONS(3104), + [anon_sym_ATfor] = ACTIONS(3107), + [anon_sym_ATforeach] = ACTIONS(3110), + [anon_sym_ATforelse] = ACTIONS(3113), + [anon_sym_ATwhile] = ACTIONS(3116), + [anon_sym_ATpersist] = ACTIONS(3119), + [anon_sym_ATteleport] = ACTIONS(3122), + [anon_sym_ATvolt] = ACTIONS(3125), + [aux_sym_text_token1] = ACTIONS(3128), + [aux_sym_text_token2] = ACTIONS(3128), + [aux_sym_text_token3] = ACTIONS(3131), }, [212] = { [sym__definition] = STATE(2111), @@ -36443,47 +36844,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(205), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3061), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3134), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [213] = { [sym__definition] = STATE(2111), @@ -36535,47 +36936,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3061), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3134), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [214] = { [sym__definition] = STATE(2012), @@ -36627,47 +37028,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(218), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3063), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3136), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [215] = { [sym__definition] = STATE(2152), @@ -36719,47 +37120,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(220), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3065), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3138), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [216] = { [sym__definition] = STATE(2077), @@ -36811,47 +37212,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(365), [sym_text] = STATE(1662), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2655), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2657), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2659), - [anon_sym_ATphp] = ACTIONS(2661), - [aux_sym_attribute_token1] = ACTIONS(2663), - [aux_sym__inline_directive_token1] = ACTIONS(2665), - [anon_sym_ATfragment] = ACTIONS(2667), - [anon_sym_ATsection] = ACTIONS(2669), - [anon_sym_ATendsection] = ACTIONS(2567), - [anon_sym_ATonce] = ACTIONS(2673), - [anon_sym_ATverbatim] = ACTIONS(2675), - [anon_sym_ATpush] = ACTIONS(2677), - [anon_sym_ATpushOnce] = ACTIONS(2679), - [anon_sym_ATpushIf] = ACTIONS(2681), - [anon_sym_ATprepend] = ACTIONS(2683), - [anon_sym_ATprependOnce] = ACTIONS(2685), - [anon_sym_ATif] = ACTIONS(2687), - [anon_sym_ATunless] = ACTIONS(2689), - [anon_sym_ATisset] = ACTIONS(2691), - [anon_sym_ATempty] = ACTIONS(2693), - [anon_sym_ATauth] = ACTIONS(2695), - [anon_sym_ATguest] = ACTIONS(2697), - [anon_sym_ATproduction] = ACTIONS(2699), - [anon_sym_ATenv] = ACTIONS(2701), - [anon_sym_AThasSection] = ACTIONS(2703), - [anon_sym_ATsectionMissing] = ACTIONS(2705), - [anon_sym_ATerror] = ACTIONS(2707), - [aux_sym__custom_token1] = ACTIONS(2709), - [aux_sym__custom_token2] = ACTIONS(2711), - [anon_sym_ATswitch] = ACTIONS(2713), - [aux_sym_loop_operator_token1] = ACTIONS(2715), - [anon_sym_ATfor] = ACTIONS(2717), - [anon_sym_ATforeach] = ACTIONS(2719), - [anon_sym_ATforelse] = ACTIONS(2721), - [anon_sym_ATwhile] = ACTIONS(2723), - [anon_sym_ATpersist] = ACTIONS(2725), - [anon_sym_ATteleport] = ACTIONS(2727), - [anon_sym_ATvolt] = ACTIONS(2729), - [aux_sym_text_token1] = ACTIONS(2731), - [aux_sym_text_token2] = ACTIONS(2731), - [aux_sym_text_token3] = ACTIONS(2731), + [aux_sym_keyword_token1] = ACTIONS(2718), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2720), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2722), + [anon_sym_ATphp] = ACTIONS(2724), + [aux_sym_attribute_token1] = ACTIONS(2726), + [aux_sym__inline_directive_token1] = ACTIONS(2728), + [anon_sym_ATfragment] = ACTIONS(2730), + [anon_sym_ATsection] = ACTIONS(2732), + [anon_sym_ATendsection] = ACTIONS(2628), + [anon_sym_ATonce] = ACTIONS(2736), + [anon_sym_ATverbatim] = ACTIONS(2738), + [anon_sym_ATpush] = ACTIONS(2740), + [anon_sym_ATpushOnce] = ACTIONS(2742), + [anon_sym_ATpushIf] = ACTIONS(2744), + [anon_sym_ATprepend] = ACTIONS(2746), + [anon_sym_ATprependOnce] = ACTIONS(2748), + [anon_sym_ATif] = ACTIONS(2750), + [anon_sym_ATunless] = ACTIONS(2752), + [anon_sym_ATisset] = ACTIONS(2754), + [anon_sym_ATempty] = ACTIONS(2756), + [anon_sym_ATauth] = ACTIONS(2758), + [anon_sym_ATguest] = ACTIONS(2760), + [anon_sym_ATproduction] = ACTIONS(2762), + [anon_sym_ATenv] = ACTIONS(2764), + [anon_sym_AThasSection] = ACTIONS(2766), + [anon_sym_ATsectionMissing] = ACTIONS(2768), + [anon_sym_ATerror] = ACTIONS(2770), + [aux_sym__custom_token1] = ACTIONS(2772), + [aux_sym__custom_token2] = ACTIONS(2774), + [anon_sym_ATswitch] = ACTIONS(2776), + [aux_sym_loop_operator_token1] = ACTIONS(2778), + [anon_sym_ATfor] = ACTIONS(2780), + [anon_sym_ATforeach] = ACTIONS(2782), + [anon_sym_ATforelse] = ACTIONS(2784), + [anon_sym_ATwhile] = ACTIONS(2786), + [anon_sym_ATpersist] = ACTIONS(2788), + [anon_sym_ATteleport] = ACTIONS(2790), + [anon_sym_ATvolt] = ACTIONS(2792), + [aux_sym_text_token1] = ACTIONS(2794), + [aux_sym_text_token2] = ACTIONS(2794), + [aux_sym_text_token3] = ACTIONS(2796), }, [217] = { [sym__definition] = STATE(2111), @@ -36903,47 +37304,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3067), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3140), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [218] = { [sym__definition] = STATE(2012), @@ -36995,47 +37396,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3069), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3142), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [219] = { [sym__definition] = STATE(2152), @@ -37087,47 +37488,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(3071), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3074), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3077), - [anon_sym_ATphp] = ACTIONS(3080), - [aux_sym_attribute_token1] = ACTIONS(3083), - [aux_sym__inline_directive_token1] = ACTIONS(3086), - [anon_sym_ATfragment] = ACTIONS(3089), - [anon_sym_ATsection] = ACTIONS(3092), - [anon_sym_ATonce] = ACTIONS(3095), - [anon_sym_ATverbatim] = ACTIONS(3098), - [anon_sym_ATendverbatim] = ACTIONS(2541), - [anon_sym_ATpush] = ACTIONS(3101), - [anon_sym_ATpushOnce] = ACTIONS(3104), - [anon_sym_ATpushIf] = ACTIONS(3107), - [anon_sym_ATprepend] = ACTIONS(3110), - [anon_sym_ATprependOnce] = ACTIONS(3113), - [anon_sym_ATif] = ACTIONS(3116), - [anon_sym_ATunless] = ACTIONS(3119), - [anon_sym_ATisset] = ACTIONS(3122), - [anon_sym_ATempty] = ACTIONS(3125), - [anon_sym_ATauth] = ACTIONS(3128), - [anon_sym_ATguest] = ACTIONS(3131), - [anon_sym_ATproduction] = ACTIONS(3134), - [anon_sym_ATenv] = ACTIONS(3137), - [anon_sym_AThasSection] = ACTIONS(3140), - [anon_sym_ATsectionMissing] = ACTIONS(3143), - [anon_sym_ATerror] = ACTIONS(3146), - [aux_sym__custom_token1] = ACTIONS(3149), - [aux_sym__custom_token2] = ACTIONS(3152), - [anon_sym_ATswitch] = ACTIONS(3155), - [aux_sym_loop_operator_token1] = ACTIONS(3158), - [anon_sym_ATfor] = ACTIONS(3161), - [anon_sym_ATforeach] = ACTIONS(3164), - [anon_sym_ATforelse] = ACTIONS(3167), - [anon_sym_ATwhile] = ACTIONS(3170), - [anon_sym_ATpersist] = ACTIONS(3173), - [anon_sym_ATteleport] = ACTIONS(3176), - [anon_sym_ATvolt] = ACTIONS(3179), - [aux_sym_text_token1] = ACTIONS(3182), - [aux_sym_text_token2] = ACTIONS(3182), - [aux_sym_text_token3] = ACTIONS(3182), + [aux_sym_keyword_token1] = ACTIONS(3144), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3147), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3150), + [anon_sym_ATphp] = ACTIONS(3153), + [aux_sym_attribute_token1] = ACTIONS(3156), + [aux_sym__inline_directive_token1] = ACTIONS(3159), + [anon_sym_ATfragment] = ACTIONS(3162), + [anon_sym_ATsection] = ACTIONS(3165), + [anon_sym_ATonce] = ACTIONS(3168), + [anon_sym_ATverbatim] = ACTIONS(3171), + [anon_sym_ATendverbatim] = ACTIONS(2599), + [anon_sym_ATpush] = ACTIONS(3174), + [anon_sym_ATpushOnce] = ACTIONS(3177), + [anon_sym_ATpushIf] = ACTIONS(3180), + [anon_sym_ATprepend] = ACTIONS(3183), + [anon_sym_ATprependOnce] = ACTIONS(3186), + [anon_sym_ATif] = ACTIONS(3189), + [anon_sym_ATunless] = ACTIONS(3192), + [anon_sym_ATisset] = ACTIONS(3195), + [anon_sym_ATempty] = ACTIONS(3198), + [anon_sym_ATauth] = ACTIONS(3201), + [anon_sym_ATguest] = ACTIONS(3204), + [anon_sym_ATproduction] = ACTIONS(3207), + [anon_sym_ATenv] = ACTIONS(3210), + [anon_sym_AThasSection] = ACTIONS(3213), + [anon_sym_ATsectionMissing] = ACTIONS(3216), + [anon_sym_ATerror] = ACTIONS(3219), + [aux_sym__custom_token1] = ACTIONS(3222), + [aux_sym__custom_token2] = ACTIONS(3225), + [anon_sym_ATswitch] = ACTIONS(3228), + [aux_sym_loop_operator_token1] = ACTIONS(3231), + [anon_sym_ATfor] = ACTIONS(3234), + [anon_sym_ATforeach] = ACTIONS(3237), + [anon_sym_ATforelse] = ACTIONS(3240), + [anon_sym_ATwhile] = ACTIONS(3243), + [anon_sym_ATpersist] = ACTIONS(3246), + [anon_sym_ATteleport] = ACTIONS(3249), + [anon_sym_ATvolt] = ACTIONS(3252), + [aux_sym_text_token1] = ACTIONS(3255), + [aux_sym_text_token2] = ACTIONS(3255), + [aux_sym_text_token3] = ACTIONS(3258), }, [220] = { [sym__definition] = STATE(2152), @@ -37179,47 +37580,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3185), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3261), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [221] = { [sym__definition] = STATE(2111), @@ -37271,47 +37672,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(213), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3187), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3263), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [222] = { [sym__definition] = STATE(2111), @@ -37363,47 +37764,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(223), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3189), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [223] = { [sym__definition] = STATE(2111), @@ -37455,47 +37856,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3191), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3267), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [224] = { [sym__definition] = STATE(2111), @@ -37547,47 +37948,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(225), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3191), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3267), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [225] = { [sym__definition] = STATE(2111), @@ -37639,47 +38040,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3193), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3269), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [226] = { [sym__definition] = STATE(2152), @@ -37731,47 +38132,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3195), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3271), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [227] = { [sym__definition] = STATE(2152), @@ -37823,47 +38224,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3197), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3273), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [228] = { [sym__definition] = STATE(2012), @@ -37915,47 +38316,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3199), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3275), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [229] = { [sym__definition] = STATE(2012), @@ -38007,47 +38408,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(240), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3201), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3277), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [230] = { [sym__definition] = STATE(2152), @@ -38099,47 +38500,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(241), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3203), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3279), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [231] = { [sym__definition] = STATE(2111), @@ -38191,47 +38592,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(201), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3205), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3281), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [232] = { [sym__definition] = STATE(2152), @@ -38283,47 +38684,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(226), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3207), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3283), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [233] = { [sym__definition] = STATE(2012), @@ -38375,47 +38776,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3209), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3285), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [234] = { [sym__definition] = STATE(2111), @@ -38467,47 +38868,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(249), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3211), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3287), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [235] = { [sym__definition] = STATE(2012), @@ -38559,47 +38960,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(228), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3213), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3289), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [236] = { [sym__definition] = STATE(2111), @@ -38651,47 +39052,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3215), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3291), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [237] = { [sym__definition] = STATE(2111), @@ -38743,47 +39144,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(236), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3217), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3293), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [238] = { [sym__definition] = STATE(2111), @@ -38835,47 +39236,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3217), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3293), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [239] = { [sym__definition] = STATE(2111), @@ -38927,47 +39328,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(238), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3219), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3295), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [240] = { [sym__definition] = STATE(2012), @@ -39019,47 +39420,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3221), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3297), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [241] = { [sym__definition] = STATE(2152), @@ -39111,47 +39512,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3223), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3299), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [242] = { [sym__definition] = STATE(2152), @@ -39203,47 +39604,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(227), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3225), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3301), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [243] = { [sym__definition] = STATE(2111), @@ -39295,47 +39696,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(244), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3227), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3303), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [244] = { [sym__definition] = STATE(2111), @@ -39387,47 +39788,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3229), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3305), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [245] = { [sym__definition] = STATE(2111), @@ -39479,47 +39880,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(246), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3229), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3305), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [246] = { [sym__definition] = STATE(2111), @@ -39571,47 +39972,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3231), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3307), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [247] = { [sym__definition] = STATE(2012), @@ -39663,47 +40064,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(250), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3233), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3309), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [248] = { [sym__definition] = STATE(2152), @@ -39755,47 +40156,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(252), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3235), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3311), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [249] = { [sym__definition] = STATE(2111), @@ -39847,47 +40248,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3237), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3313), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [250] = { [sym__definition] = STATE(2012), @@ -39939,47 +40340,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3239), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3315), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [251] = { [sym__definition] = STATE(1966), @@ -40030,48 +40431,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__volt] = STATE(1985), [sym_text] = STATE(1986), [aux_sym_blade_repeat1] = STATE(251), - [ts_builtin_sym_end] = ACTIONS(2912), + [ts_builtin_sym_end] = ACTIONS(2979), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(3241), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3244), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3247), - [anon_sym_ATphp] = ACTIONS(3250), - [aux_sym_attribute_token1] = ACTIONS(3253), - [aux_sym__inline_directive_token1] = ACTIONS(3256), - [anon_sym_ATfragment] = ACTIONS(3259), - [anon_sym_ATsection] = ACTIONS(3262), - [anon_sym_ATonce] = ACTIONS(3265), - [anon_sym_ATverbatim] = ACTIONS(3268), - [anon_sym_ATpush] = ACTIONS(3271), - [anon_sym_ATpushOnce] = ACTIONS(3274), - [anon_sym_ATpushIf] = ACTIONS(3277), - [anon_sym_ATprepend] = ACTIONS(3280), - [anon_sym_ATprependOnce] = ACTIONS(3283), - [anon_sym_ATif] = ACTIONS(3286), - [anon_sym_ATunless] = ACTIONS(3289), - [anon_sym_ATisset] = ACTIONS(3292), - [anon_sym_ATempty] = ACTIONS(3295), - [anon_sym_ATauth] = ACTIONS(3298), - [anon_sym_ATguest] = ACTIONS(3301), - [anon_sym_ATproduction] = ACTIONS(3304), - [anon_sym_ATenv] = ACTIONS(3307), - [anon_sym_AThasSection] = ACTIONS(3310), - [anon_sym_ATsectionMissing] = ACTIONS(3313), - [anon_sym_ATerror] = ACTIONS(3316), - [aux_sym__custom_token1] = ACTIONS(3319), - [aux_sym__custom_token2] = ACTIONS(3322), - [anon_sym_ATswitch] = ACTIONS(3325), - [aux_sym_loop_operator_token1] = ACTIONS(3328), - [anon_sym_ATfor] = ACTIONS(3331), - [anon_sym_ATforeach] = ACTIONS(3334), - [anon_sym_ATforelse] = ACTIONS(3337), - [anon_sym_ATwhile] = ACTIONS(3340), - [anon_sym_ATpersist] = ACTIONS(3343), - [anon_sym_ATteleport] = ACTIONS(3346), - [anon_sym_ATvolt] = ACTIONS(3349), - [aux_sym_text_token1] = ACTIONS(3352), - [aux_sym_text_token2] = ACTIONS(3352), - [aux_sym_text_token3] = ACTIONS(3352), + [aux_sym_keyword_token1] = ACTIONS(3317), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3320), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3323), + [anon_sym_ATphp] = ACTIONS(3326), + [aux_sym_attribute_token1] = ACTIONS(3329), + [aux_sym__inline_directive_token1] = ACTIONS(3332), + [anon_sym_ATfragment] = ACTIONS(3335), + [anon_sym_ATsection] = ACTIONS(3338), + [anon_sym_ATonce] = ACTIONS(3341), + [anon_sym_ATverbatim] = ACTIONS(3344), + [anon_sym_ATpush] = ACTIONS(3347), + [anon_sym_ATpushOnce] = ACTIONS(3350), + [anon_sym_ATpushIf] = ACTIONS(3353), + [anon_sym_ATprepend] = ACTIONS(3356), + [anon_sym_ATprependOnce] = ACTIONS(3359), + [anon_sym_ATif] = ACTIONS(3362), + [anon_sym_ATunless] = ACTIONS(3365), + [anon_sym_ATisset] = ACTIONS(3368), + [anon_sym_ATempty] = ACTIONS(3371), + [anon_sym_ATauth] = ACTIONS(3374), + [anon_sym_ATguest] = ACTIONS(3377), + [anon_sym_ATproduction] = ACTIONS(3380), + [anon_sym_ATenv] = ACTIONS(3383), + [anon_sym_AThasSection] = ACTIONS(3386), + [anon_sym_ATsectionMissing] = ACTIONS(3389), + [anon_sym_ATerror] = ACTIONS(3392), + [aux_sym__custom_token1] = ACTIONS(3395), + [aux_sym__custom_token2] = ACTIONS(3398), + [anon_sym_ATswitch] = ACTIONS(3401), + [aux_sym_loop_operator_token1] = ACTIONS(3404), + [anon_sym_ATfor] = ACTIONS(3407), + [anon_sym_ATforeach] = ACTIONS(3410), + [anon_sym_ATforelse] = ACTIONS(3413), + [anon_sym_ATwhile] = ACTIONS(3416), + [anon_sym_ATpersist] = ACTIONS(3419), + [anon_sym_ATteleport] = ACTIONS(3422), + [anon_sym_ATvolt] = ACTIONS(3425), + [aux_sym_text_token1] = ACTIONS(3428), + [aux_sym_text_token2] = ACTIONS(3428), + [aux_sym_text_token3] = ACTIONS(3431), }, [252] = { [sym__definition] = STATE(2152), @@ -40123,47 +40524,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3355), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3434), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [253] = { [sym__definition] = STATE(2111), @@ -40215,47 +40616,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(281), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3237), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3313), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [254] = { [sym__definition] = STATE(2111), @@ -40307,47 +40708,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3205), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3281), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [255] = { [sym__definition] = STATE(1104), @@ -40399,47 +40800,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(255), [sym_text] = STATE(1673), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(3357), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3360), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3363), - [anon_sym_ATphp] = ACTIONS(3366), - [aux_sym_attribute_token1] = ACTIONS(3369), - [aux_sym__inline_directive_token1] = ACTIONS(3372), - [anon_sym_ATfragment] = ACTIONS(3375), - [anon_sym_ATsection] = ACTIONS(3378), - [anon_sym_ATonce] = ACTIONS(3381), - [anon_sym_ATverbatim] = ACTIONS(3384), - [anon_sym_ATpush] = ACTIONS(3387), - [anon_sym_ATpushOnce] = ACTIONS(3390), - [anon_sym_ATpushIf] = ACTIONS(3393), - [anon_sym_ATprepend] = ACTIONS(3396), - [anon_sym_ATprependOnce] = ACTIONS(3399), - [anon_sym_ATif] = ACTIONS(3402), - [anon_sym_ATunless] = ACTIONS(3405), - [anon_sym_ATisset] = ACTIONS(3408), - [anon_sym_ATempty] = ACTIONS(3411), - [anon_sym_ATauth] = ACTIONS(3414), - [anon_sym_ATguest] = ACTIONS(3417), - [anon_sym_ATproduction] = ACTIONS(3420), - [anon_sym_ATenv] = ACTIONS(3423), - [anon_sym_AThasSection] = ACTIONS(3426), - [anon_sym_ATsectionMissing] = ACTIONS(3429), - [anon_sym_ATerror] = ACTIONS(3432), - [aux_sym__custom_token1] = ACTIONS(3435), - [aux_sym__custom_token2] = ACTIONS(3438), - [anon_sym_ATswitch] = ACTIONS(3441), - [aux_sym_loop_operator_token1] = ACTIONS(3444), - [anon_sym_ATfor] = ACTIONS(3447), - [anon_sym_ATforeach] = ACTIONS(3450), - [anon_sym_ATforelse] = ACTIONS(3453), - [anon_sym_ATwhile] = ACTIONS(3456), - [anon_sym_ATpersist] = ACTIONS(3459), - [anon_sym_ATendpersist] = ACTIONS(2541), - [anon_sym_ATteleport] = ACTIONS(3462), - [anon_sym_ATvolt] = ACTIONS(3465), - [aux_sym_text_token1] = ACTIONS(3468), - [aux_sym_text_token2] = ACTIONS(3468), - [aux_sym_text_token3] = ACTIONS(3468), + [aux_sym_keyword_token1] = ACTIONS(3436), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3439), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3442), + [anon_sym_ATphp] = ACTIONS(3445), + [aux_sym_attribute_token1] = ACTIONS(3448), + [aux_sym__inline_directive_token1] = ACTIONS(3451), + [anon_sym_ATfragment] = ACTIONS(3454), + [anon_sym_ATsection] = ACTIONS(3457), + [anon_sym_ATonce] = ACTIONS(3460), + [anon_sym_ATverbatim] = ACTIONS(3463), + [anon_sym_ATpush] = ACTIONS(3466), + [anon_sym_ATpushOnce] = ACTIONS(3469), + [anon_sym_ATpushIf] = ACTIONS(3472), + [anon_sym_ATprepend] = ACTIONS(3475), + [anon_sym_ATprependOnce] = ACTIONS(3478), + [anon_sym_ATif] = ACTIONS(3481), + [anon_sym_ATunless] = ACTIONS(3484), + [anon_sym_ATisset] = ACTIONS(3487), + [anon_sym_ATempty] = ACTIONS(3490), + [anon_sym_ATauth] = ACTIONS(3493), + [anon_sym_ATguest] = ACTIONS(3496), + [anon_sym_ATproduction] = ACTIONS(3499), + [anon_sym_ATenv] = ACTIONS(3502), + [anon_sym_AThasSection] = ACTIONS(3505), + [anon_sym_ATsectionMissing] = ACTIONS(3508), + [anon_sym_ATerror] = ACTIONS(3511), + [aux_sym__custom_token1] = ACTIONS(3514), + [aux_sym__custom_token2] = ACTIONS(3517), + [anon_sym_ATswitch] = ACTIONS(3520), + [aux_sym_loop_operator_token1] = ACTIONS(3523), + [anon_sym_ATfor] = ACTIONS(3526), + [anon_sym_ATforeach] = ACTIONS(3529), + [anon_sym_ATforelse] = ACTIONS(3532), + [anon_sym_ATwhile] = ACTIONS(3535), + [anon_sym_ATpersist] = ACTIONS(3538), + [anon_sym_ATendpersist] = ACTIONS(2599), + [anon_sym_ATteleport] = ACTIONS(3541), + [anon_sym_ATvolt] = ACTIONS(3544), + [aux_sym_text_token1] = ACTIONS(3547), + [aux_sym_text_token2] = ACTIONS(3547), + [aux_sym_text_token3] = ACTIONS(3550), }, [256] = { [sym__definition] = STATE(2111), @@ -40491,47 +40892,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(257), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3471), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3553), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [257] = { [sym__definition] = STATE(2111), @@ -40583,507 +40984,507 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3473), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), - }, - [258] = { - [sym__definition] = STATE(2111), - [sym_comment] = STATE(258), - [sym_keyword] = STATE(1842), - [sym_php_statement] = STATE(1842), - [sym__escaped] = STATE(1843), - [sym__unescaped] = STATE(1843), - [sym__raw] = STATE(1843), - [sym__inline_raw] = STATE(1844), - [sym__multi_line_raw] = STATE(1844), - [sym_attribute] = STATE(1842), - [sym__inline_directive] = STATE(1842), - [sym__nested_directive] = STATE(1842), - [sym_fragment] = STATE(1845), - [sym_section] = STATE(1845), - [sym_once] = STATE(1845), - [sym_verbatim] = STATE(1845), - [sym_stack] = STATE(1845), - [sym__push] = STATE(1846), - [sym__pushOnce] = STATE(1846), - [sym__pushIf] = STATE(1846), - [sym__prepend] = STATE(1846), - [sym__prependOnce] = STATE(1846), - [sym_conditional] = STATE(1845), - [sym__if] = STATE(1847), - [sym__unless] = STATE(1847), - [sym__isset] = STATE(1847), - [sym__empty] = STATE(1847), - [sym__auth] = STATE(1847), - [sym__guest] = STATE(1847), - [sym__production] = STATE(1847), - [sym__env] = STATE(1847), - [sym__hasSection] = STATE(1847), - [sym__sectionMissing] = STATE(1847), - [sym__error] = STATE(1847), - [sym__custom] = STATE(1847), - [sym_switch] = STATE(1845), - [sym_loop] = STATE(1845), - [sym_loop_operator] = STATE(1842), - [sym__for] = STATE(1848), - [sym__foreach] = STATE(1848), - [sym__forelse] = STATE(1848), - [sym__while] = STATE(1848), - [sym_livewire] = STATE(1845), - [sym__persist] = STATE(1849), - [sym__teleport] = STATE(1849), - [sym__volt] = STATE(1849), - [sym_text] = STATE(1850), - [aux_sym_blade_repeat1] = STATE(254), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3475), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), - }, - [259] = { - [sym__definition] = STATE(1146), - [sym_comment] = STATE(259), - [sym_keyword] = STATE(1783), - [sym_php_statement] = STATE(1783), - [sym__escaped] = STATE(1784), - [sym__unescaped] = STATE(1784), - [sym__raw] = STATE(1784), - [sym__inline_raw] = STATE(1785), - [sym__multi_line_raw] = STATE(1785), - [sym_attribute] = STATE(1783), - [sym__inline_directive] = STATE(1783), - [sym__nested_directive] = STATE(1783), - [sym_fragment] = STATE(1786), - [sym_section] = STATE(1786), - [sym_once] = STATE(1786), - [sym_verbatim] = STATE(1786), - [sym_stack] = STATE(1786), - [sym__push] = STATE(1787), - [sym__pushOnce] = STATE(1787), - [sym__pushIf] = STATE(1787), - [sym__prepend] = STATE(1787), - [sym__prependOnce] = STATE(1787), - [sym_conditional] = STATE(1786), - [sym__if] = STATE(1788), - [sym__unless] = STATE(1788), - [sym__isset] = STATE(1788), - [sym__empty] = STATE(1788), - [sym__auth] = STATE(1788), - [sym__guest] = STATE(1788), - [sym__production] = STATE(1788), - [sym__env] = STATE(1788), - [sym__hasSection] = STATE(1788), - [sym__sectionMissing] = STATE(1788), - [sym__error] = STATE(1788), - [sym__custom] = STATE(1788), - [sym_switch] = STATE(1786), - [sym_loop] = STATE(1786), - [sym_loop_operator] = STATE(1783), - [sym__for] = STATE(1789), - [sym__foreach] = STATE(1789), - [sym__forelse] = STATE(1789), - [sym__while] = STATE(1789), - [sym_livewire] = STATE(1786), - [sym__persist] = STATE(1790), - [sym__teleport] = STATE(1790), - [sym__volt] = STATE(1790), - [aux_sym__directive_body] = STATE(336), - [sym_text] = STATE(1791), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(3477), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3479), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3481), - [anon_sym_ATphp] = ACTIONS(3483), - [aux_sym_attribute_token1] = ACTIONS(3485), - [aux_sym__inline_directive_token1] = ACTIONS(3487), - [anon_sym_ATfragment] = ACTIONS(3489), - [anon_sym_ATsection] = ACTIONS(3491), - [anon_sym_ATonce] = ACTIONS(3493), - [anon_sym_ATverbatim] = ACTIONS(3495), - [anon_sym_ATpush] = ACTIONS(3497), - [anon_sym_ATpushOnce] = ACTIONS(3499), - [anon_sym_ATpushIf] = ACTIONS(3501), - [anon_sym_ATprepend] = ACTIONS(3503), - [anon_sym_ATprependOnce] = ACTIONS(3505), - [anon_sym_ATif] = ACTIONS(3507), - [anon_sym_ATunless] = ACTIONS(3509), - [anon_sym_ATisset] = ACTIONS(3511), - [anon_sym_ATempty] = ACTIONS(3513), - [anon_sym_ATauth] = ACTIONS(3515), - [anon_sym_ATguest] = ACTIONS(3517), - [anon_sym_ATproduction] = ACTIONS(3519), - [anon_sym_ATenv] = ACTIONS(3521), - [anon_sym_AThasSection] = ACTIONS(3523), - [anon_sym_ATsectionMissing] = ACTIONS(3525), - [anon_sym_ATerror] = ACTIONS(3527), - [aux_sym__custom_token1] = ACTIONS(3529), - [aux_sym__custom_token2] = ACTIONS(3531), - [anon_sym_ATswitch] = ACTIONS(3533), - [aux_sym_loop_operator_token1] = ACTIONS(3535), - [anon_sym_ATfor] = ACTIONS(3537), - [anon_sym_ATforeach] = ACTIONS(3539), - [anon_sym_ATforelse] = ACTIONS(3541), - [anon_sym_ATwhile] = ACTIONS(3543), - [anon_sym_ATpersist] = ACTIONS(3545), - [anon_sym_ATteleport] = ACTIONS(3547), - [anon_sym_ATvolt] = ACTIONS(3549), - [anon_sym_ATendvolt] = ACTIONS(2567), - [aux_sym_text_token1] = ACTIONS(3551), - [aux_sym_text_token2] = ACTIONS(3551), - [aux_sym_text_token3] = ACTIONS(3551), - }, - [260] = { - [sym__definition] = STATE(2152), - [sym_comment] = STATE(260), - [sym_keyword] = STATE(2124), - [sym_php_statement] = STATE(2124), - [sym__escaped] = STATE(2169), - [sym__unescaped] = STATE(2169), - [sym__raw] = STATE(2169), - [sym__inline_raw] = STATE(2168), - [sym__multi_line_raw] = STATE(2168), - [sym_attribute] = STATE(2124), - [sym__inline_directive] = STATE(2124), - [sym__nested_directive] = STATE(2124), - [sym_fragment] = STATE(2164), - [sym_section] = STATE(2164), - [sym_once] = STATE(2164), - [sym_verbatim] = STATE(2164), - [sym_stack] = STATE(2164), - [sym__push] = STATE(2163), - [sym__pushOnce] = STATE(2163), - [sym__pushIf] = STATE(2163), - [sym__prepend] = STATE(2163), - [sym__prependOnce] = STATE(2163), - [sym_conditional] = STATE(2164), - [sym__if] = STATE(2162), - [sym__unless] = STATE(2162), - [sym__isset] = STATE(2162), - [sym__empty] = STATE(2162), - [sym__auth] = STATE(2162), - [sym__guest] = STATE(2162), - [sym__production] = STATE(2162), - [sym__env] = STATE(2162), - [sym__hasSection] = STATE(2162), - [sym__sectionMissing] = STATE(2162), - [sym__error] = STATE(2162), - [sym__custom] = STATE(2162), - [sym_switch] = STATE(2164), - [sym_loop] = STATE(2164), - [sym_loop_operator] = STATE(2124), - [sym__for] = STATE(2161), - [sym__foreach] = STATE(2161), - [sym__forelse] = STATE(2161), - [sym__while] = STATE(2161), - [sym_livewire] = STATE(2164), - [sym__persist] = STATE(2156), - [sym__teleport] = STATE(2156), - [sym__volt] = STATE(2156), - [aux_sym__directive_body] = STATE(379), - [sym_text] = STATE(2155), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3553), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), - }, - [261] = { - [sym__definition] = STATE(2111), - [sym_comment] = STATE(261), - [sym_keyword] = STATE(1842), - [sym_php_statement] = STATE(1842), - [sym__escaped] = STATE(1843), - [sym__unescaped] = STATE(1843), - [sym__raw] = STATE(1843), - [sym__inline_raw] = STATE(1844), - [sym__multi_line_raw] = STATE(1844), - [sym_attribute] = STATE(1842), - [sym__inline_directive] = STATE(1842), - [sym__nested_directive] = STATE(1842), - [sym_fragment] = STATE(1845), - [sym_section] = STATE(1845), - [sym_once] = STATE(1845), - [sym_verbatim] = STATE(1845), - [sym_stack] = STATE(1845), - [sym__push] = STATE(1846), - [sym__pushOnce] = STATE(1846), - [sym__pushIf] = STATE(1846), - [sym__prepend] = STATE(1846), - [sym__prependOnce] = STATE(1846), - [sym_conditional] = STATE(1845), - [sym__if] = STATE(1847), - [sym__unless] = STATE(1847), - [sym__isset] = STATE(1847), - [sym__empty] = STATE(1847), - [sym__auth] = STATE(1847), - [sym__guest] = STATE(1847), - [sym__production] = STATE(1847), - [sym__env] = STATE(1847), - [sym__hasSection] = STATE(1847), - [sym__sectionMissing] = STATE(1847), - [sym__error] = STATE(1847), - [sym__custom] = STATE(1847), - [sym_switch] = STATE(1845), - [sym_loop] = STATE(1845), - [sym_loop_operator] = STATE(1842), - [sym__for] = STATE(1848), - [sym__foreach] = STATE(1848), - [sym__forelse] = STATE(1848), - [sym__while] = STATE(1848), - [sym_livewire] = STATE(1845), - [sym__persist] = STATE(1849), - [sym__teleport] = STATE(1849), - [sym__volt] = STATE(1849), - [sym_text] = STATE(1850), - [aux_sym_blade_repeat1] = STATE(262), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3473), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), - }, - [262] = { - [sym__definition] = STATE(2111), - [sym_comment] = STATE(262), - [sym_keyword] = STATE(1842), - [sym_php_statement] = STATE(1842), - [sym__escaped] = STATE(1843), - [sym__unescaped] = STATE(1843), - [sym__raw] = STATE(1843), - [sym__inline_raw] = STATE(1844), - [sym__multi_line_raw] = STATE(1844), - [sym_attribute] = STATE(1842), - [sym__inline_directive] = STATE(1842), - [sym__nested_directive] = STATE(1842), - [sym_fragment] = STATE(1845), - [sym_section] = STATE(1845), - [sym_once] = STATE(1845), - [sym_verbatim] = STATE(1845), - [sym_stack] = STATE(1845), - [sym__push] = STATE(1846), - [sym__pushOnce] = STATE(1846), - [sym__pushIf] = STATE(1846), - [sym__prepend] = STATE(1846), - [sym__prependOnce] = STATE(1846), - [sym_conditional] = STATE(1845), - [sym__if] = STATE(1847), - [sym__unless] = STATE(1847), - [sym__isset] = STATE(1847), - [sym__empty] = STATE(1847), - [sym__auth] = STATE(1847), - [sym__guest] = STATE(1847), - [sym__production] = STATE(1847), - [sym__env] = STATE(1847), - [sym__hasSection] = STATE(1847), - [sym__sectionMissing] = STATE(1847), - [sym__error] = STATE(1847), - [sym__custom] = STATE(1847), - [sym_switch] = STATE(1845), - [sym_loop] = STATE(1845), - [sym_loop_operator] = STATE(1842), - [sym__for] = STATE(1848), - [sym__foreach] = STATE(1848), - [sym__forelse] = STATE(1848), - [sym__while] = STATE(1848), - [sym_livewire] = STATE(1845), - [sym__persist] = STATE(1849), - [sym__teleport] = STATE(1849), - [sym__volt] = STATE(1849), - [sym_text] = STATE(1850), - [aux_sym_blade_repeat1] = STATE(206), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), [anon_sym_ATendswitch] = ACTIONS(3555), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), + }, + [258] = { + [sym__definition] = STATE(2111), + [sym_comment] = STATE(258), + [sym_keyword] = STATE(1842), + [sym_php_statement] = STATE(1842), + [sym__escaped] = STATE(1843), + [sym__unescaped] = STATE(1843), + [sym__raw] = STATE(1843), + [sym__inline_raw] = STATE(1844), + [sym__multi_line_raw] = STATE(1844), + [sym_attribute] = STATE(1842), + [sym__inline_directive] = STATE(1842), + [sym__nested_directive] = STATE(1842), + [sym_fragment] = STATE(1845), + [sym_section] = STATE(1845), + [sym_once] = STATE(1845), + [sym_verbatim] = STATE(1845), + [sym_stack] = STATE(1845), + [sym__push] = STATE(1846), + [sym__pushOnce] = STATE(1846), + [sym__pushIf] = STATE(1846), + [sym__prepend] = STATE(1846), + [sym__prependOnce] = STATE(1846), + [sym_conditional] = STATE(1845), + [sym__if] = STATE(1847), + [sym__unless] = STATE(1847), + [sym__isset] = STATE(1847), + [sym__empty] = STATE(1847), + [sym__auth] = STATE(1847), + [sym__guest] = STATE(1847), + [sym__production] = STATE(1847), + [sym__env] = STATE(1847), + [sym__hasSection] = STATE(1847), + [sym__sectionMissing] = STATE(1847), + [sym__error] = STATE(1847), + [sym__custom] = STATE(1847), + [sym_switch] = STATE(1845), + [sym_loop] = STATE(1845), + [sym_loop_operator] = STATE(1842), + [sym__for] = STATE(1848), + [sym__foreach] = STATE(1848), + [sym__forelse] = STATE(1848), + [sym__while] = STATE(1848), + [sym_livewire] = STATE(1845), + [sym__persist] = STATE(1849), + [sym__teleport] = STATE(1849), + [sym__volt] = STATE(1849), + [sym_text] = STATE(1850), + [aux_sym_blade_repeat1] = STATE(254), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3557), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), + }, + [259] = { + [sym__definition] = STATE(1146), + [sym_comment] = STATE(259), + [sym_keyword] = STATE(1783), + [sym_php_statement] = STATE(1783), + [sym__escaped] = STATE(1784), + [sym__unescaped] = STATE(1784), + [sym__raw] = STATE(1784), + [sym__inline_raw] = STATE(1785), + [sym__multi_line_raw] = STATE(1785), + [sym_attribute] = STATE(1783), + [sym__inline_directive] = STATE(1783), + [sym__nested_directive] = STATE(1783), + [sym_fragment] = STATE(1786), + [sym_section] = STATE(1786), + [sym_once] = STATE(1786), + [sym_verbatim] = STATE(1786), + [sym_stack] = STATE(1786), + [sym__push] = STATE(1787), + [sym__pushOnce] = STATE(1787), + [sym__pushIf] = STATE(1787), + [sym__prepend] = STATE(1787), + [sym__prependOnce] = STATE(1787), + [sym_conditional] = STATE(1786), + [sym__if] = STATE(1788), + [sym__unless] = STATE(1788), + [sym__isset] = STATE(1788), + [sym__empty] = STATE(1788), + [sym__auth] = STATE(1788), + [sym__guest] = STATE(1788), + [sym__production] = STATE(1788), + [sym__env] = STATE(1788), + [sym__hasSection] = STATE(1788), + [sym__sectionMissing] = STATE(1788), + [sym__error] = STATE(1788), + [sym__custom] = STATE(1788), + [sym_switch] = STATE(1786), + [sym_loop] = STATE(1786), + [sym_loop_operator] = STATE(1783), + [sym__for] = STATE(1789), + [sym__foreach] = STATE(1789), + [sym__forelse] = STATE(1789), + [sym__while] = STATE(1789), + [sym_livewire] = STATE(1786), + [sym__persist] = STATE(1790), + [sym__teleport] = STATE(1790), + [sym__volt] = STATE(1790), + [aux_sym__directive_body] = STATE(336), + [sym_text] = STATE(1791), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3559), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3561), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3563), + [anon_sym_ATphp] = ACTIONS(3565), + [aux_sym_attribute_token1] = ACTIONS(3567), + [aux_sym__inline_directive_token1] = ACTIONS(3569), + [anon_sym_ATfragment] = ACTIONS(3571), + [anon_sym_ATsection] = ACTIONS(3573), + [anon_sym_ATonce] = ACTIONS(3575), + [anon_sym_ATverbatim] = ACTIONS(3577), + [anon_sym_ATpush] = ACTIONS(3579), + [anon_sym_ATpushOnce] = ACTIONS(3581), + [anon_sym_ATpushIf] = ACTIONS(3583), + [anon_sym_ATprepend] = ACTIONS(3585), + [anon_sym_ATprependOnce] = ACTIONS(3587), + [anon_sym_ATif] = ACTIONS(3589), + [anon_sym_ATunless] = ACTIONS(3591), + [anon_sym_ATisset] = ACTIONS(3593), + [anon_sym_ATempty] = ACTIONS(3595), + [anon_sym_ATauth] = ACTIONS(3597), + [anon_sym_ATguest] = ACTIONS(3599), + [anon_sym_ATproduction] = ACTIONS(3601), + [anon_sym_ATenv] = ACTIONS(3603), + [anon_sym_AThasSection] = ACTIONS(3605), + [anon_sym_ATsectionMissing] = ACTIONS(3607), + [anon_sym_ATerror] = ACTIONS(3609), + [aux_sym__custom_token1] = ACTIONS(3611), + [aux_sym__custom_token2] = ACTIONS(3613), + [anon_sym_ATswitch] = ACTIONS(3615), + [aux_sym_loop_operator_token1] = ACTIONS(3617), + [anon_sym_ATfor] = ACTIONS(3619), + [anon_sym_ATforeach] = ACTIONS(3621), + [anon_sym_ATforelse] = ACTIONS(3623), + [anon_sym_ATwhile] = ACTIONS(3625), + [anon_sym_ATpersist] = ACTIONS(3627), + [anon_sym_ATteleport] = ACTIONS(3629), + [anon_sym_ATvolt] = ACTIONS(3631), + [anon_sym_ATendvolt] = ACTIONS(2628), + [aux_sym_text_token1] = ACTIONS(3633), + [aux_sym_text_token2] = ACTIONS(3633), + [aux_sym_text_token3] = ACTIONS(3635), + }, + [260] = { + [sym__definition] = STATE(2152), + [sym_comment] = STATE(260), + [sym_keyword] = STATE(2124), + [sym_php_statement] = STATE(2124), + [sym__escaped] = STATE(2169), + [sym__unescaped] = STATE(2169), + [sym__raw] = STATE(2169), + [sym__inline_raw] = STATE(2168), + [sym__multi_line_raw] = STATE(2168), + [sym_attribute] = STATE(2124), + [sym__inline_directive] = STATE(2124), + [sym__nested_directive] = STATE(2124), + [sym_fragment] = STATE(2164), + [sym_section] = STATE(2164), + [sym_once] = STATE(2164), + [sym_verbatim] = STATE(2164), + [sym_stack] = STATE(2164), + [sym__push] = STATE(2163), + [sym__pushOnce] = STATE(2163), + [sym__pushIf] = STATE(2163), + [sym__prepend] = STATE(2163), + [sym__prependOnce] = STATE(2163), + [sym_conditional] = STATE(2164), + [sym__if] = STATE(2162), + [sym__unless] = STATE(2162), + [sym__isset] = STATE(2162), + [sym__empty] = STATE(2162), + [sym__auth] = STATE(2162), + [sym__guest] = STATE(2162), + [sym__production] = STATE(2162), + [sym__env] = STATE(2162), + [sym__hasSection] = STATE(2162), + [sym__sectionMissing] = STATE(2162), + [sym__error] = STATE(2162), + [sym__custom] = STATE(2162), + [sym_switch] = STATE(2164), + [sym_loop] = STATE(2164), + [sym_loop_operator] = STATE(2124), + [sym__for] = STATE(2161), + [sym__foreach] = STATE(2161), + [sym__forelse] = STATE(2161), + [sym__while] = STATE(2161), + [sym_livewire] = STATE(2164), + [sym__persist] = STATE(2156), + [sym__teleport] = STATE(2156), + [sym__volt] = STATE(2156), + [aux_sym__directive_body] = STATE(379), + [sym_text] = STATE(2155), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3637), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), + }, + [261] = { + [sym__definition] = STATE(2111), + [sym_comment] = STATE(261), + [sym_keyword] = STATE(1842), + [sym_php_statement] = STATE(1842), + [sym__escaped] = STATE(1843), + [sym__unescaped] = STATE(1843), + [sym__raw] = STATE(1843), + [sym__inline_raw] = STATE(1844), + [sym__multi_line_raw] = STATE(1844), + [sym_attribute] = STATE(1842), + [sym__inline_directive] = STATE(1842), + [sym__nested_directive] = STATE(1842), + [sym_fragment] = STATE(1845), + [sym_section] = STATE(1845), + [sym_once] = STATE(1845), + [sym_verbatim] = STATE(1845), + [sym_stack] = STATE(1845), + [sym__push] = STATE(1846), + [sym__pushOnce] = STATE(1846), + [sym__pushIf] = STATE(1846), + [sym__prepend] = STATE(1846), + [sym__prependOnce] = STATE(1846), + [sym_conditional] = STATE(1845), + [sym__if] = STATE(1847), + [sym__unless] = STATE(1847), + [sym__isset] = STATE(1847), + [sym__empty] = STATE(1847), + [sym__auth] = STATE(1847), + [sym__guest] = STATE(1847), + [sym__production] = STATE(1847), + [sym__env] = STATE(1847), + [sym__hasSection] = STATE(1847), + [sym__sectionMissing] = STATE(1847), + [sym__error] = STATE(1847), + [sym__custom] = STATE(1847), + [sym_switch] = STATE(1845), + [sym_loop] = STATE(1845), + [sym_loop_operator] = STATE(1842), + [sym__for] = STATE(1848), + [sym__foreach] = STATE(1848), + [sym__forelse] = STATE(1848), + [sym__while] = STATE(1848), + [sym_livewire] = STATE(1845), + [sym__persist] = STATE(1849), + [sym__teleport] = STATE(1849), + [sym__volt] = STATE(1849), + [sym_text] = STATE(1850), + [aux_sym_blade_repeat1] = STATE(262), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3555), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), + }, + [262] = { + [sym__definition] = STATE(2111), + [sym_comment] = STATE(262), + [sym_keyword] = STATE(1842), + [sym_php_statement] = STATE(1842), + [sym__escaped] = STATE(1843), + [sym__unescaped] = STATE(1843), + [sym__raw] = STATE(1843), + [sym__inline_raw] = STATE(1844), + [sym__multi_line_raw] = STATE(1844), + [sym_attribute] = STATE(1842), + [sym__inline_directive] = STATE(1842), + [sym__nested_directive] = STATE(1842), + [sym_fragment] = STATE(1845), + [sym_section] = STATE(1845), + [sym_once] = STATE(1845), + [sym_verbatim] = STATE(1845), + [sym_stack] = STATE(1845), + [sym__push] = STATE(1846), + [sym__pushOnce] = STATE(1846), + [sym__pushIf] = STATE(1846), + [sym__prepend] = STATE(1846), + [sym__prependOnce] = STATE(1846), + [sym_conditional] = STATE(1845), + [sym__if] = STATE(1847), + [sym__unless] = STATE(1847), + [sym__isset] = STATE(1847), + [sym__empty] = STATE(1847), + [sym__auth] = STATE(1847), + [sym__guest] = STATE(1847), + [sym__production] = STATE(1847), + [sym__env] = STATE(1847), + [sym__hasSection] = STATE(1847), + [sym__sectionMissing] = STATE(1847), + [sym__error] = STATE(1847), + [sym__custom] = STATE(1847), + [sym_switch] = STATE(1845), + [sym_loop] = STATE(1845), + [sym_loop_operator] = STATE(1842), + [sym__for] = STATE(1848), + [sym__foreach] = STATE(1848), + [sym__forelse] = STATE(1848), + [sym__while] = STATE(1848), + [sym_livewire] = STATE(1845), + [sym__persist] = STATE(1849), + [sym__teleport] = STATE(1849), + [sym__volt] = STATE(1849), + [sym_text] = STATE(1850), + [aux_sym_blade_repeat1] = STATE(206), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3639), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [263] = { [sym__definition] = STATE(2152), @@ -41135,47 +41536,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3557), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3641), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [264] = { [sym__definition] = STATE(2012), @@ -41227,47 +41628,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3559), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3643), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [265] = { [sym__definition] = STATE(2012), @@ -41319,47 +41720,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(273), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3561), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3645), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [266] = { [sym__definition] = STATE(2152), @@ -41411,47 +41812,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(275), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3563), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3647), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [267] = { [sym__definition] = STATE(2152), @@ -41503,47 +41904,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(263), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3565), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3649), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [268] = { [sym__definition] = STATE(2012), @@ -41595,47 +41996,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(264), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3567), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3651), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [269] = { [sym__definition] = STATE(2111), @@ -41687,47 +42088,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3569), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3653), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [270] = { [sym__definition] = STATE(2111), @@ -41779,47 +42180,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(269), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3571), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3655), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [271] = { [sym__definition] = STATE(1146), @@ -41871,47 +42272,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(259), [sym_text] = STATE(1791), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(3477), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3479), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3481), - [anon_sym_ATphp] = ACTIONS(3483), - [aux_sym_attribute_token1] = ACTIONS(3485), - [aux_sym__inline_directive_token1] = ACTIONS(3487), - [anon_sym_ATfragment] = ACTIONS(3489), - [anon_sym_ATsection] = ACTIONS(3491), - [anon_sym_ATonce] = ACTIONS(3493), - [anon_sym_ATverbatim] = ACTIONS(3495), - [anon_sym_ATpush] = ACTIONS(3497), - [anon_sym_ATpushOnce] = ACTIONS(3499), - [anon_sym_ATpushIf] = ACTIONS(3501), - [anon_sym_ATprepend] = ACTIONS(3503), - [anon_sym_ATprependOnce] = ACTIONS(3505), - [anon_sym_ATif] = ACTIONS(3507), - [anon_sym_ATunless] = ACTIONS(3509), - [anon_sym_ATisset] = ACTIONS(3511), - [anon_sym_ATempty] = ACTIONS(3513), - [anon_sym_ATauth] = ACTIONS(3515), - [anon_sym_ATguest] = ACTIONS(3517), - [anon_sym_ATproduction] = ACTIONS(3519), - [anon_sym_ATenv] = ACTIONS(3521), - [anon_sym_AThasSection] = ACTIONS(3523), - [anon_sym_ATsectionMissing] = ACTIONS(3525), - [anon_sym_ATerror] = ACTIONS(3527), - [aux_sym__custom_token1] = ACTIONS(3529), - [aux_sym__custom_token2] = ACTIONS(3531), - [anon_sym_ATswitch] = ACTIONS(3533), - [aux_sym_loop_operator_token1] = ACTIONS(3535), - [anon_sym_ATfor] = ACTIONS(3537), - [anon_sym_ATforeach] = ACTIONS(3539), - [anon_sym_ATforelse] = ACTIONS(3541), - [anon_sym_ATwhile] = ACTIONS(3543), - [anon_sym_ATpersist] = ACTIONS(3545), - [anon_sym_ATteleport] = ACTIONS(3547), - [anon_sym_ATvolt] = ACTIONS(3549), - [anon_sym_ATendvolt] = ACTIONS(2671), - [aux_sym_text_token1] = ACTIONS(3551), - [aux_sym_text_token2] = ACTIONS(3551), - [aux_sym_text_token3] = ACTIONS(3551), + [aux_sym_keyword_token1] = ACTIONS(3559), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3561), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3563), + [anon_sym_ATphp] = ACTIONS(3565), + [aux_sym_attribute_token1] = ACTIONS(3567), + [aux_sym__inline_directive_token1] = ACTIONS(3569), + [anon_sym_ATfragment] = ACTIONS(3571), + [anon_sym_ATsection] = ACTIONS(3573), + [anon_sym_ATonce] = ACTIONS(3575), + [anon_sym_ATverbatim] = ACTIONS(3577), + [anon_sym_ATpush] = ACTIONS(3579), + [anon_sym_ATpushOnce] = ACTIONS(3581), + [anon_sym_ATpushIf] = ACTIONS(3583), + [anon_sym_ATprepend] = ACTIONS(3585), + [anon_sym_ATprependOnce] = ACTIONS(3587), + [anon_sym_ATif] = ACTIONS(3589), + [anon_sym_ATunless] = ACTIONS(3591), + [anon_sym_ATisset] = ACTIONS(3593), + [anon_sym_ATempty] = ACTIONS(3595), + [anon_sym_ATauth] = ACTIONS(3597), + [anon_sym_ATguest] = ACTIONS(3599), + [anon_sym_ATproduction] = ACTIONS(3601), + [anon_sym_ATenv] = ACTIONS(3603), + [anon_sym_AThasSection] = ACTIONS(3605), + [anon_sym_ATsectionMissing] = ACTIONS(3607), + [anon_sym_ATerror] = ACTIONS(3609), + [aux_sym__custom_token1] = ACTIONS(3611), + [aux_sym__custom_token2] = ACTIONS(3613), + [anon_sym_ATswitch] = ACTIONS(3615), + [aux_sym_loop_operator_token1] = ACTIONS(3617), + [anon_sym_ATfor] = ACTIONS(3619), + [anon_sym_ATforeach] = ACTIONS(3621), + [anon_sym_ATforelse] = ACTIONS(3623), + [anon_sym_ATwhile] = ACTIONS(3625), + [anon_sym_ATpersist] = ACTIONS(3627), + [anon_sym_ATteleport] = ACTIONS(3629), + [anon_sym_ATvolt] = ACTIONS(3631), + [anon_sym_ATendvolt] = ACTIONS(2734), + [aux_sym_text_token1] = ACTIONS(3633), + [aux_sym_text_token2] = ACTIONS(3633), + [aux_sym_text_token3] = ACTIONS(3635), }, [272] = { [sym__definition] = STATE(2111), @@ -41963,47 +42364,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3571), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3655), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [273] = { [sym__definition] = STATE(2012), @@ -42055,47 +42456,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3573), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3657), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [274] = { [sym__definition] = STATE(2111), @@ -42147,47 +42548,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(272), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3575), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3659), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [275] = { [sym__definition] = STATE(2152), @@ -42239,47 +42640,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3577), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3661), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [276] = { [sym__definition] = STATE(2152), @@ -42331,47 +42732,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3579), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3663), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [277] = { [sym__definition] = STATE(2071), @@ -42423,47 +42824,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(292), [sym_text] = STATE(1382), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(3581), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3583), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3585), - [anon_sym_ATphp] = ACTIONS(3587), - [aux_sym_attribute_token1] = ACTIONS(3589), - [aux_sym__inline_directive_token1] = ACTIONS(3591), - [anon_sym_ATfragment] = ACTIONS(3593), - [anon_sym_ATsection] = ACTIONS(3595), - [anon_sym_ATonce] = ACTIONS(3597), - [anon_sym_ATverbatim] = ACTIONS(3599), - [anon_sym_ATpush] = ACTIONS(3601), - [anon_sym_ATendpush] = ACTIONS(2671), - [anon_sym_ATpushOnce] = ACTIONS(3603), - [anon_sym_ATpushIf] = ACTIONS(3605), - [anon_sym_ATprepend] = ACTIONS(3607), - [anon_sym_ATprependOnce] = ACTIONS(3609), - [anon_sym_ATif] = ACTIONS(3611), - [anon_sym_ATunless] = ACTIONS(3613), - [anon_sym_ATisset] = ACTIONS(3615), - [anon_sym_ATempty] = ACTIONS(3617), - [anon_sym_ATauth] = ACTIONS(3619), - [anon_sym_ATguest] = ACTIONS(3621), - [anon_sym_ATproduction] = ACTIONS(3623), - [anon_sym_ATenv] = ACTIONS(3625), - [anon_sym_AThasSection] = ACTIONS(3627), - [anon_sym_ATsectionMissing] = ACTIONS(3629), - [anon_sym_ATerror] = ACTIONS(3631), - [aux_sym__custom_token1] = ACTIONS(3633), - [aux_sym__custom_token2] = ACTIONS(3635), - [anon_sym_ATswitch] = ACTIONS(3637), - [aux_sym_loop_operator_token1] = ACTIONS(3639), - [anon_sym_ATfor] = ACTIONS(3641), - [anon_sym_ATforeach] = ACTIONS(3643), - [anon_sym_ATforelse] = ACTIONS(3645), - [anon_sym_ATwhile] = ACTIONS(3647), - [anon_sym_ATpersist] = ACTIONS(3649), - [anon_sym_ATteleport] = ACTIONS(3651), - [anon_sym_ATvolt] = ACTIONS(3653), - [aux_sym_text_token1] = ACTIONS(3655), - [aux_sym_text_token2] = ACTIONS(3655), - [aux_sym_text_token3] = ACTIONS(3655), + [aux_sym_keyword_token1] = ACTIONS(3665), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3667), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3669), + [anon_sym_ATphp] = ACTIONS(3671), + [aux_sym_attribute_token1] = ACTIONS(3673), + [aux_sym__inline_directive_token1] = ACTIONS(3675), + [anon_sym_ATfragment] = ACTIONS(3677), + [anon_sym_ATsection] = ACTIONS(3679), + [anon_sym_ATonce] = ACTIONS(3681), + [anon_sym_ATverbatim] = ACTIONS(3683), + [anon_sym_ATpush] = ACTIONS(3685), + [anon_sym_ATendpush] = ACTIONS(2734), + [anon_sym_ATpushOnce] = ACTIONS(3687), + [anon_sym_ATpushIf] = ACTIONS(3689), + [anon_sym_ATprepend] = ACTIONS(3691), + [anon_sym_ATprependOnce] = ACTIONS(3693), + [anon_sym_ATif] = ACTIONS(3695), + [anon_sym_ATunless] = ACTIONS(3697), + [anon_sym_ATisset] = ACTIONS(3699), + [anon_sym_ATempty] = ACTIONS(3701), + [anon_sym_ATauth] = ACTIONS(3703), + [anon_sym_ATguest] = ACTIONS(3705), + [anon_sym_ATproduction] = ACTIONS(3707), + [anon_sym_ATenv] = ACTIONS(3709), + [anon_sym_AThasSection] = ACTIONS(3711), + [anon_sym_ATsectionMissing] = ACTIONS(3713), + [anon_sym_ATerror] = ACTIONS(3715), + [aux_sym__custom_token1] = ACTIONS(3717), + [aux_sym__custom_token2] = ACTIONS(3719), + [anon_sym_ATswitch] = ACTIONS(3721), + [aux_sym_loop_operator_token1] = ACTIONS(3723), + [anon_sym_ATfor] = ACTIONS(3725), + [anon_sym_ATforeach] = ACTIONS(3727), + [anon_sym_ATforelse] = ACTIONS(3729), + [anon_sym_ATwhile] = ACTIONS(3731), + [anon_sym_ATpersist] = ACTIONS(3733), + [anon_sym_ATteleport] = ACTIONS(3735), + [anon_sym_ATvolt] = ACTIONS(3737), + [aux_sym_text_token1] = ACTIONS(3739), + [aux_sym_text_token2] = ACTIONS(3739), + [aux_sym_text_token3] = ACTIONS(3741), }, [278] = { [sym__definition] = STATE(2111), @@ -42515,47 +42916,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(279), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3657), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3743), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [279] = { [sym__definition] = STATE(2111), @@ -42607,47 +43008,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3659), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3745), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [280] = { [sym__definition] = STATE(2111), @@ -42699,47 +43100,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(285), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3659), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3745), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [281] = { [sym__definition] = STATE(2111), @@ -42791,47 +43192,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3661), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3747), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [282] = { [sym__definition] = STATE(2111), @@ -42883,47 +43284,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(284), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3663), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3749), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [283] = { [sym__definition] = STATE(2152), @@ -42975,47 +43376,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3665), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3751), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [284] = { [sym__definition] = STATE(2111), @@ -43067,47 +43468,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3667), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3753), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [285] = { [sym__definition] = STATE(2111), @@ -43159,47 +43560,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3669), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3755), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [286] = { [sym__definition] = STATE(2012), @@ -43251,47 +43652,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(289), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3671), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3757), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [287] = { [sym__definition] = STATE(2152), @@ -43343,47 +43744,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(290), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3673), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3759), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [288] = { [sym__definition] = STATE(2012), @@ -43435,47 +43836,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3675), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3761), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [289] = { [sym__definition] = STATE(2012), @@ -43527,47 +43928,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3677), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3763), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [290] = { [sym__definition] = STATE(2152), @@ -43619,47 +44020,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3679), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3765), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [291] = { [sym__definition] = STATE(2012), @@ -43711,47 +44112,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(233), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3681), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3767), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [292] = { [sym__definition] = STATE(2071), @@ -43803,47 +44204,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(390), [sym_text] = STATE(1382), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(3581), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3583), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3585), - [anon_sym_ATphp] = ACTIONS(3587), - [aux_sym_attribute_token1] = ACTIONS(3589), - [aux_sym__inline_directive_token1] = ACTIONS(3591), - [anon_sym_ATfragment] = ACTIONS(3593), - [anon_sym_ATsection] = ACTIONS(3595), - [anon_sym_ATonce] = ACTIONS(3597), - [anon_sym_ATverbatim] = ACTIONS(3599), - [anon_sym_ATpush] = ACTIONS(3601), - [anon_sym_ATendpush] = ACTIONS(2567), - [anon_sym_ATpushOnce] = ACTIONS(3603), - [anon_sym_ATpushIf] = ACTIONS(3605), - [anon_sym_ATprepend] = ACTIONS(3607), - [anon_sym_ATprependOnce] = ACTIONS(3609), - [anon_sym_ATif] = ACTIONS(3611), - [anon_sym_ATunless] = ACTIONS(3613), - [anon_sym_ATisset] = ACTIONS(3615), - [anon_sym_ATempty] = ACTIONS(3617), - [anon_sym_ATauth] = ACTIONS(3619), - [anon_sym_ATguest] = ACTIONS(3621), - [anon_sym_ATproduction] = ACTIONS(3623), - [anon_sym_ATenv] = ACTIONS(3625), - [anon_sym_AThasSection] = ACTIONS(3627), - [anon_sym_ATsectionMissing] = ACTIONS(3629), - [anon_sym_ATerror] = ACTIONS(3631), - [aux_sym__custom_token1] = ACTIONS(3633), - [aux_sym__custom_token2] = ACTIONS(3635), - [anon_sym_ATswitch] = ACTIONS(3637), - [aux_sym_loop_operator_token1] = ACTIONS(3639), - [anon_sym_ATfor] = ACTIONS(3641), - [anon_sym_ATforeach] = ACTIONS(3643), - [anon_sym_ATforelse] = ACTIONS(3645), - [anon_sym_ATwhile] = ACTIONS(3647), - [anon_sym_ATpersist] = ACTIONS(3649), - [anon_sym_ATteleport] = ACTIONS(3651), - [anon_sym_ATvolt] = ACTIONS(3653), - [aux_sym_text_token1] = ACTIONS(3655), - [aux_sym_text_token2] = ACTIONS(3655), - [aux_sym_text_token3] = ACTIONS(3655), + [aux_sym_keyword_token1] = ACTIONS(3665), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3667), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3669), + [anon_sym_ATphp] = ACTIONS(3671), + [aux_sym_attribute_token1] = ACTIONS(3673), + [aux_sym__inline_directive_token1] = ACTIONS(3675), + [anon_sym_ATfragment] = ACTIONS(3677), + [anon_sym_ATsection] = ACTIONS(3679), + [anon_sym_ATonce] = ACTIONS(3681), + [anon_sym_ATverbatim] = ACTIONS(3683), + [anon_sym_ATpush] = ACTIONS(3685), + [anon_sym_ATendpush] = ACTIONS(2628), + [anon_sym_ATpushOnce] = ACTIONS(3687), + [anon_sym_ATpushIf] = ACTIONS(3689), + [anon_sym_ATprepend] = ACTIONS(3691), + [anon_sym_ATprependOnce] = ACTIONS(3693), + [anon_sym_ATif] = ACTIONS(3695), + [anon_sym_ATunless] = ACTIONS(3697), + [anon_sym_ATisset] = ACTIONS(3699), + [anon_sym_ATempty] = ACTIONS(3701), + [anon_sym_ATauth] = ACTIONS(3703), + [anon_sym_ATguest] = ACTIONS(3705), + [anon_sym_ATproduction] = ACTIONS(3707), + [anon_sym_ATenv] = ACTIONS(3709), + [anon_sym_AThasSection] = ACTIONS(3711), + [anon_sym_ATsectionMissing] = ACTIONS(3713), + [anon_sym_ATerror] = ACTIONS(3715), + [aux_sym__custom_token1] = ACTIONS(3717), + [aux_sym__custom_token2] = ACTIONS(3719), + [anon_sym_ATswitch] = ACTIONS(3721), + [aux_sym_loop_operator_token1] = ACTIONS(3723), + [anon_sym_ATfor] = ACTIONS(3725), + [anon_sym_ATforeach] = ACTIONS(3727), + [anon_sym_ATforelse] = ACTIONS(3729), + [anon_sym_ATwhile] = ACTIONS(3731), + [anon_sym_ATpersist] = ACTIONS(3733), + [anon_sym_ATteleport] = ACTIONS(3735), + [anon_sym_ATvolt] = ACTIONS(3737), + [aux_sym_text_token1] = ACTIONS(3739), + [aux_sym_text_token2] = ACTIONS(3739), + [aux_sym_text_token3] = ACTIONS(3741), }, [293] = { [sym__definition] = STATE(2111), @@ -43895,47 +44296,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(294), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3683), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3769), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [294] = { [sym__definition] = STATE(2111), @@ -43987,47 +44388,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3685), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3771), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [295] = { [sym__definition] = STATE(2142), @@ -44079,47 +44480,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(295), [sym_text] = STATE(2039), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(3687), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3690), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3693), - [anon_sym_ATphp] = ACTIONS(3696), - [aux_sym_attribute_token1] = ACTIONS(3699), - [aux_sym__inline_directive_token1] = ACTIONS(3702), - [anon_sym_ATfragment] = ACTIONS(3705), - [anon_sym_ATendfragment] = ACTIONS(2541), - [anon_sym_ATsection] = ACTIONS(3708), - [anon_sym_ATonce] = ACTIONS(3711), - [anon_sym_ATverbatim] = ACTIONS(3714), - [anon_sym_ATpush] = ACTIONS(3717), - [anon_sym_ATpushOnce] = ACTIONS(3720), - [anon_sym_ATpushIf] = ACTIONS(3723), - [anon_sym_ATprepend] = ACTIONS(3726), - [anon_sym_ATprependOnce] = ACTIONS(3729), - [anon_sym_ATif] = ACTIONS(3732), - [anon_sym_ATunless] = ACTIONS(3735), - [anon_sym_ATisset] = ACTIONS(3738), - [anon_sym_ATempty] = ACTIONS(3741), - [anon_sym_ATauth] = ACTIONS(3744), - [anon_sym_ATguest] = ACTIONS(3747), - [anon_sym_ATproduction] = ACTIONS(3750), - [anon_sym_ATenv] = ACTIONS(3753), - [anon_sym_AThasSection] = ACTIONS(3756), - [anon_sym_ATsectionMissing] = ACTIONS(3759), - [anon_sym_ATerror] = ACTIONS(3762), - [aux_sym__custom_token1] = ACTIONS(3765), - [aux_sym__custom_token2] = ACTIONS(3768), - [anon_sym_ATswitch] = ACTIONS(3771), - [aux_sym_loop_operator_token1] = ACTIONS(3774), - [anon_sym_ATfor] = ACTIONS(3777), - [anon_sym_ATforeach] = ACTIONS(3780), - [anon_sym_ATforelse] = ACTIONS(3783), - [anon_sym_ATwhile] = ACTIONS(3786), - [anon_sym_ATpersist] = ACTIONS(3789), - [anon_sym_ATteleport] = ACTIONS(3792), - [anon_sym_ATvolt] = ACTIONS(3795), - [aux_sym_text_token1] = ACTIONS(3798), - [aux_sym_text_token2] = ACTIONS(3798), - [aux_sym_text_token3] = ACTIONS(3798), + [aux_sym_keyword_token1] = ACTIONS(3773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3776), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3779), + [anon_sym_ATphp] = ACTIONS(3782), + [aux_sym_attribute_token1] = ACTIONS(3785), + [aux_sym__inline_directive_token1] = ACTIONS(3788), + [anon_sym_ATfragment] = ACTIONS(3791), + [anon_sym_ATendfragment] = ACTIONS(2599), + [anon_sym_ATsection] = ACTIONS(3794), + [anon_sym_ATonce] = ACTIONS(3797), + [anon_sym_ATverbatim] = ACTIONS(3800), + [anon_sym_ATpush] = ACTIONS(3803), + [anon_sym_ATpushOnce] = ACTIONS(3806), + [anon_sym_ATpushIf] = ACTIONS(3809), + [anon_sym_ATprepend] = ACTIONS(3812), + [anon_sym_ATprependOnce] = ACTIONS(3815), + [anon_sym_ATif] = ACTIONS(3818), + [anon_sym_ATunless] = ACTIONS(3821), + [anon_sym_ATisset] = ACTIONS(3824), + [anon_sym_ATempty] = ACTIONS(3827), + [anon_sym_ATauth] = ACTIONS(3830), + [anon_sym_ATguest] = ACTIONS(3833), + [anon_sym_ATproduction] = ACTIONS(3836), + [anon_sym_ATenv] = ACTIONS(3839), + [anon_sym_AThasSection] = ACTIONS(3842), + [anon_sym_ATsectionMissing] = ACTIONS(3845), + [anon_sym_ATerror] = ACTIONS(3848), + [aux_sym__custom_token1] = ACTIONS(3851), + [aux_sym__custom_token2] = ACTIONS(3854), + [anon_sym_ATswitch] = ACTIONS(3857), + [aux_sym_loop_operator_token1] = ACTIONS(3860), + [anon_sym_ATfor] = ACTIONS(3863), + [anon_sym_ATforeach] = ACTIONS(3866), + [anon_sym_ATforelse] = ACTIONS(3869), + [anon_sym_ATwhile] = ACTIONS(3872), + [anon_sym_ATpersist] = ACTIONS(3875), + [anon_sym_ATteleport] = ACTIONS(3878), + [anon_sym_ATvolt] = ACTIONS(3881), + [aux_sym_text_token1] = ACTIONS(3884), + [aux_sym_text_token2] = ACTIONS(3884), + [aux_sym_text_token3] = ACTIONS(3887), }, [296] = { [sym__definition] = STATE(2111), @@ -44171,47 +44572,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(297), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3685), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3771), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [297] = { [sym__definition] = STATE(2111), @@ -44263,47 +44664,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3801), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3890), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [298] = { [sym__definition] = STATE(2012), @@ -44355,47 +44756,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(305), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3803), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3892), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [299] = { [sym__definition] = STATE(2152), @@ -44447,47 +44848,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3805), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3894), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [300] = { [sym__definition] = STATE(2012), @@ -44539,47 +44940,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3807), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3896), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [301] = { [sym__definition] = STATE(2152), @@ -44631,47 +45032,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(311), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3809), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3898), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [302] = { [sym__definition] = STATE(2152), @@ -44723,47 +45124,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(299), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3811), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3900), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [303] = { [sym__definition] = STATE(2012), @@ -44815,47 +45216,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(321), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3813), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3902), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [304] = { [sym__definition] = STATE(2012), @@ -44907,47 +45308,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(300), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3815), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3904), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [305] = { [sym__definition] = STATE(2012), @@ -44999,47 +45400,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3817), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3906), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [306] = { [sym__definition] = STATE(2111), @@ -45091,47 +45492,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3819), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3908), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [307] = { [sym__definition] = STATE(2152), @@ -45183,47 +45584,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3821), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3910), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [308] = { [sym__definition] = STATE(2111), @@ -45275,47 +45676,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(306), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3823), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3912), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [309] = { [sym__definition] = STATE(2142), @@ -45367,47 +45768,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(180), [sym_text] = STATE(2039), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2553), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2555), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2557), - [anon_sym_ATphp] = ACTIONS(2559), - [aux_sym_attribute_token1] = ACTIONS(2561), - [aux_sym__inline_directive_token1] = ACTIONS(2563), - [anon_sym_ATfragment] = ACTIONS(2565), - [anon_sym_ATendfragment] = ACTIONS(2671), - [anon_sym_ATsection] = ACTIONS(2569), - [anon_sym_ATonce] = ACTIONS(2571), - [anon_sym_ATverbatim] = ACTIONS(2573), - [anon_sym_ATpush] = ACTIONS(2575), - [anon_sym_ATpushOnce] = ACTIONS(2577), - [anon_sym_ATpushIf] = ACTIONS(2579), - [anon_sym_ATprepend] = ACTIONS(2581), - [anon_sym_ATprependOnce] = ACTIONS(2583), - [anon_sym_ATif] = ACTIONS(2585), - [anon_sym_ATunless] = ACTIONS(2587), - [anon_sym_ATisset] = ACTIONS(2589), - [anon_sym_ATempty] = ACTIONS(2591), - [anon_sym_ATauth] = ACTIONS(2593), - [anon_sym_ATguest] = ACTIONS(2595), - [anon_sym_ATproduction] = ACTIONS(2597), - [anon_sym_ATenv] = ACTIONS(2599), - [anon_sym_AThasSection] = ACTIONS(2601), - [anon_sym_ATsectionMissing] = ACTIONS(2603), - [anon_sym_ATerror] = ACTIONS(2605), - [aux_sym__custom_token1] = ACTIONS(2607), - [aux_sym__custom_token2] = ACTIONS(2609), - [anon_sym_ATswitch] = ACTIONS(2611), - [aux_sym_loop_operator_token1] = ACTIONS(2613), - [anon_sym_ATfor] = ACTIONS(2615), - [anon_sym_ATforeach] = ACTIONS(2617), - [anon_sym_ATforelse] = ACTIONS(2619), - [anon_sym_ATwhile] = ACTIONS(2621), - [anon_sym_ATpersist] = ACTIONS(2623), - [anon_sym_ATteleport] = ACTIONS(2625), - [anon_sym_ATvolt] = ACTIONS(2627), - [aux_sym_text_token1] = ACTIONS(2629), - [aux_sym_text_token2] = ACTIONS(2629), - [aux_sym_text_token3] = ACTIONS(2629), + [aux_sym_keyword_token1] = ACTIONS(2614), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2616), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2618), + [anon_sym_ATphp] = ACTIONS(2620), + [aux_sym_attribute_token1] = ACTIONS(2622), + [aux_sym__inline_directive_token1] = ACTIONS(2624), + [anon_sym_ATfragment] = ACTIONS(2626), + [anon_sym_ATendfragment] = ACTIONS(2734), + [anon_sym_ATsection] = ACTIONS(2630), + [anon_sym_ATonce] = ACTIONS(2632), + [anon_sym_ATverbatim] = ACTIONS(2634), + [anon_sym_ATpush] = ACTIONS(2636), + [anon_sym_ATpushOnce] = ACTIONS(2638), + [anon_sym_ATpushIf] = ACTIONS(2640), + [anon_sym_ATprepend] = ACTIONS(2642), + [anon_sym_ATprependOnce] = ACTIONS(2644), + [anon_sym_ATif] = ACTIONS(2646), + [anon_sym_ATunless] = ACTIONS(2648), + [anon_sym_ATisset] = ACTIONS(2650), + [anon_sym_ATempty] = ACTIONS(2652), + [anon_sym_ATauth] = ACTIONS(2654), + [anon_sym_ATguest] = ACTIONS(2656), + [anon_sym_ATproduction] = ACTIONS(2658), + [anon_sym_ATenv] = ACTIONS(2660), + [anon_sym_AThasSection] = ACTIONS(2662), + [anon_sym_ATsectionMissing] = ACTIONS(2664), + [anon_sym_ATerror] = ACTIONS(2666), + [aux_sym__custom_token1] = ACTIONS(2668), + [aux_sym__custom_token2] = ACTIONS(2670), + [anon_sym_ATswitch] = ACTIONS(2672), + [aux_sym_loop_operator_token1] = ACTIONS(2674), + [anon_sym_ATfor] = ACTIONS(2676), + [anon_sym_ATforeach] = ACTIONS(2678), + [anon_sym_ATforelse] = ACTIONS(2680), + [anon_sym_ATwhile] = ACTIONS(2682), + [anon_sym_ATpersist] = ACTIONS(2684), + [anon_sym_ATteleport] = ACTIONS(2686), + [anon_sym_ATvolt] = ACTIONS(2688), + [aux_sym_text_token1] = ACTIONS(2690), + [aux_sym_text_token2] = ACTIONS(2690), + [aux_sym_text_token3] = ACTIONS(2692), }, [310] = { [sym__definition] = STATE(2111), @@ -45459,47 +45860,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3823), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3912), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [311] = { [sym__definition] = STATE(2152), @@ -45551,47 +45952,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3825), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3914), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [312] = { [sym__definition] = STATE(2111), @@ -45643,47 +46044,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(310), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3827), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3916), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [313] = { [sym__definition] = STATE(2012), @@ -45735,47 +46136,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3829), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3918), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [314] = { [sym__definition] = STATE(2111), @@ -45827,47 +46228,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(315), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3831), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3920), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [315] = { [sym__definition] = STATE(2111), @@ -45919,47 +46320,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3833), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3922), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [316] = { [sym__definition] = STATE(2111), @@ -46011,47 +46412,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(317), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3833), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3922), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [317] = { [sym__definition] = STATE(2111), @@ -46103,47 +46504,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3835), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3924), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [318] = { [sym__definition] = STATE(2012), @@ -46195,47 +46596,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(322), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3837), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3926), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [319] = { [sym__definition] = STATE(2152), @@ -46287,47 +46688,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(323), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3839), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3928), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [320] = { [sym__definition] = STATE(2111), @@ -46379,47 +46780,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3841), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3930), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [321] = { [sym__definition] = STATE(2012), @@ -46471,47 +46872,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3843), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3932), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [322] = { [sym__definition] = STATE(2012), @@ -46563,47 +46964,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3845), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3934), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [323] = { [sym__definition] = STATE(2152), @@ -46655,47 +47056,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3847), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3936), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [324] = { [sym__definition] = STATE(2152), @@ -46747,47 +47148,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(3849), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(3938), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [325] = { [sym__definition] = STATE(2111), @@ -46839,47 +47240,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(326), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3851), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3940), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [326] = { [sym__definition] = STATE(2111), @@ -46931,47 +47332,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3853), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3942), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [327] = { [sym__definition] = STATE(2111), @@ -47023,47 +47424,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(328), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3853), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3942), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [328] = { [sym__definition] = STATE(2111), @@ -47115,47 +47516,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3855), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3944), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [329] = { [sym__definition] = STATE(2012), @@ -47207,47 +47608,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(3857), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(3946), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [330] = { [sym__definition] = STATE(2061), @@ -47299,47 +47700,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(330), [sym_text] = STATE(1325), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(3859), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3862), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3865), - [anon_sym_ATphp] = ACTIONS(3868), - [aux_sym_attribute_token1] = ACTIONS(3871), - [aux_sym__inline_directive_token1] = ACTIONS(3874), - [anon_sym_ATfragment] = ACTIONS(3877), - [anon_sym_ATsection] = ACTIONS(3880), - [anon_sym_ATonce] = ACTIONS(3883), - [anon_sym_ATverbatim] = ACTIONS(3886), - [anon_sym_ATpush] = ACTIONS(3889), - [anon_sym_ATpushOnce] = ACTIONS(3892), - [anon_sym_ATendPushOnce] = ACTIONS(2541), - [anon_sym_ATpushIf] = ACTIONS(3895), - [anon_sym_ATprepend] = ACTIONS(3898), - [anon_sym_ATprependOnce] = ACTIONS(3901), - [anon_sym_ATif] = ACTIONS(3904), - [anon_sym_ATunless] = ACTIONS(3907), - [anon_sym_ATisset] = ACTIONS(3910), - [anon_sym_ATempty] = ACTIONS(3913), - [anon_sym_ATauth] = ACTIONS(3916), - [anon_sym_ATguest] = ACTIONS(3919), - [anon_sym_ATproduction] = ACTIONS(3922), - [anon_sym_ATenv] = ACTIONS(3925), - [anon_sym_AThasSection] = ACTIONS(3928), - [anon_sym_ATsectionMissing] = ACTIONS(3931), - [anon_sym_ATerror] = ACTIONS(3934), - [aux_sym__custom_token1] = ACTIONS(3937), - [aux_sym__custom_token2] = ACTIONS(3940), - [anon_sym_ATswitch] = ACTIONS(3943), - [aux_sym_loop_operator_token1] = ACTIONS(3946), - [anon_sym_ATfor] = ACTIONS(3949), - [anon_sym_ATforeach] = ACTIONS(3952), - [anon_sym_ATforelse] = ACTIONS(3955), - [anon_sym_ATwhile] = ACTIONS(3958), - [anon_sym_ATpersist] = ACTIONS(3961), - [anon_sym_ATteleport] = ACTIONS(3964), - [anon_sym_ATvolt] = ACTIONS(3967), - [aux_sym_text_token1] = ACTIONS(3970), - [aux_sym_text_token2] = ACTIONS(3970), - [aux_sym_text_token3] = ACTIONS(3970), + [aux_sym_keyword_token1] = ACTIONS(3948), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3951), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3954), + [anon_sym_ATphp] = ACTIONS(3957), + [aux_sym_attribute_token1] = ACTIONS(3960), + [aux_sym__inline_directive_token1] = ACTIONS(3963), + [anon_sym_ATfragment] = ACTIONS(3966), + [anon_sym_ATsection] = ACTIONS(3969), + [anon_sym_ATonce] = ACTIONS(3972), + [anon_sym_ATverbatim] = ACTIONS(3975), + [anon_sym_ATpush] = ACTIONS(3978), + [anon_sym_ATpushOnce] = ACTIONS(3981), + [anon_sym_ATendPushOnce] = ACTIONS(2599), + [anon_sym_ATpushIf] = ACTIONS(3984), + [anon_sym_ATprepend] = ACTIONS(3987), + [anon_sym_ATprependOnce] = ACTIONS(3990), + [anon_sym_ATif] = ACTIONS(3993), + [anon_sym_ATunless] = ACTIONS(3996), + [anon_sym_ATisset] = ACTIONS(3999), + [anon_sym_ATempty] = ACTIONS(4002), + [anon_sym_ATauth] = ACTIONS(4005), + [anon_sym_ATguest] = ACTIONS(4008), + [anon_sym_ATproduction] = ACTIONS(4011), + [anon_sym_ATenv] = ACTIONS(4014), + [anon_sym_AThasSection] = ACTIONS(4017), + [anon_sym_ATsectionMissing] = ACTIONS(4020), + [anon_sym_ATerror] = ACTIONS(4023), + [aux_sym__custom_token1] = ACTIONS(4026), + [aux_sym__custom_token2] = ACTIONS(4029), + [anon_sym_ATswitch] = ACTIONS(4032), + [aux_sym_loop_operator_token1] = ACTIONS(4035), + [anon_sym_ATfor] = ACTIONS(4038), + [anon_sym_ATforeach] = ACTIONS(4041), + [anon_sym_ATforelse] = ACTIONS(4044), + [anon_sym_ATwhile] = ACTIONS(4047), + [anon_sym_ATpersist] = ACTIONS(4050), + [anon_sym_ATteleport] = ACTIONS(4053), + [anon_sym_ATvolt] = ACTIONS(4056), + [aux_sym_text_token1] = ACTIONS(4059), + [aux_sym_text_token2] = ACTIONS(4059), + [aux_sym_text_token3] = ACTIONS(4062), }, [331] = { [sym__definition] = STATE(1546), @@ -47391,47 +47792,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(377), [sym_text] = STATE(1211), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(3973), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3975), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3977), - [anon_sym_ATphp] = ACTIONS(3979), - [aux_sym_attribute_token1] = ACTIONS(3981), - [aux_sym__inline_directive_token1] = ACTIONS(3983), - [anon_sym_ATfragment] = ACTIONS(3985), - [anon_sym_ATsection] = ACTIONS(3987), - [anon_sym_ATonce] = ACTIONS(3989), - [anon_sym_ATverbatim] = ACTIONS(3991), - [anon_sym_ATpush] = ACTIONS(3993), - [anon_sym_ATpushOnce] = ACTIONS(3995), - [anon_sym_ATpushIf] = ACTIONS(3997), - [anon_sym_ATprepend] = ACTIONS(3999), - [anon_sym_ATendprepend] = ACTIONS(2567), - [anon_sym_ATprependOnce] = ACTIONS(4001), - [anon_sym_ATif] = ACTIONS(4003), - [anon_sym_ATunless] = ACTIONS(4005), - [anon_sym_ATisset] = ACTIONS(4007), - [anon_sym_ATempty] = ACTIONS(4009), - [anon_sym_ATauth] = ACTIONS(4011), - [anon_sym_ATguest] = ACTIONS(4013), - [anon_sym_ATproduction] = ACTIONS(4015), - [anon_sym_ATenv] = ACTIONS(4017), - [anon_sym_AThasSection] = ACTIONS(4019), - [anon_sym_ATsectionMissing] = ACTIONS(4021), - [anon_sym_ATerror] = ACTIONS(4023), - [aux_sym__custom_token1] = ACTIONS(4025), - [aux_sym__custom_token2] = ACTIONS(4027), - [anon_sym_ATswitch] = ACTIONS(4029), - [aux_sym_loop_operator_token1] = ACTIONS(4031), - [anon_sym_ATfor] = ACTIONS(4033), - [anon_sym_ATforeach] = ACTIONS(4035), - [anon_sym_ATforelse] = ACTIONS(4037), - [anon_sym_ATwhile] = ACTIONS(4039), - [anon_sym_ATpersist] = ACTIONS(4041), - [anon_sym_ATteleport] = ACTIONS(4043), - [anon_sym_ATvolt] = ACTIONS(4045), - [aux_sym_text_token1] = ACTIONS(4047), - [aux_sym_text_token2] = ACTIONS(4047), - [aux_sym_text_token3] = ACTIONS(4047), + [aux_sym_keyword_token1] = ACTIONS(4065), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4067), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4069), + [anon_sym_ATphp] = ACTIONS(4071), + [aux_sym_attribute_token1] = ACTIONS(4073), + [aux_sym__inline_directive_token1] = ACTIONS(4075), + [anon_sym_ATfragment] = ACTIONS(4077), + [anon_sym_ATsection] = ACTIONS(4079), + [anon_sym_ATonce] = ACTIONS(4081), + [anon_sym_ATverbatim] = ACTIONS(4083), + [anon_sym_ATpush] = ACTIONS(4085), + [anon_sym_ATpushOnce] = ACTIONS(4087), + [anon_sym_ATpushIf] = ACTIONS(4089), + [anon_sym_ATprepend] = ACTIONS(4091), + [anon_sym_ATendprepend] = ACTIONS(2628), + [anon_sym_ATprependOnce] = ACTIONS(4093), + [anon_sym_ATif] = ACTIONS(4095), + [anon_sym_ATunless] = ACTIONS(4097), + [anon_sym_ATisset] = ACTIONS(4099), + [anon_sym_ATempty] = ACTIONS(4101), + [anon_sym_ATauth] = ACTIONS(4103), + [anon_sym_ATguest] = ACTIONS(4105), + [anon_sym_ATproduction] = ACTIONS(4107), + [anon_sym_ATenv] = ACTIONS(4109), + [anon_sym_AThasSection] = ACTIONS(4111), + [anon_sym_ATsectionMissing] = ACTIONS(4113), + [anon_sym_ATerror] = ACTIONS(4115), + [aux_sym__custom_token1] = ACTIONS(4117), + [aux_sym__custom_token2] = ACTIONS(4119), + [anon_sym_ATswitch] = ACTIONS(4121), + [aux_sym_loop_operator_token1] = ACTIONS(4123), + [anon_sym_ATfor] = ACTIONS(4125), + [anon_sym_ATforeach] = ACTIONS(4127), + [anon_sym_ATforelse] = ACTIONS(4129), + [anon_sym_ATwhile] = ACTIONS(4131), + [anon_sym_ATpersist] = ACTIONS(4133), + [anon_sym_ATteleport] = ACTIONS(4135), + [anon_sym_ATvolt] = ACTIONS(4137), + [aux_sym_text_token1] = ACTIONS(4139), + [aux_sym_text_token2] = ACTIONS(4139), + [aux_sym_text_token3] = ACTIONS(4141), }, [332] = { [sym__definition] = STATE(2111), @@ -47483,47 +47884,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(320), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3067), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3140), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [333] = { [sym__definition] = STATE(1144), @@ -47575,47 +47976,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(333), [sym_text] = STATE(1614), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(4049), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4052), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4055), - [anon_sym_ATphp] = ACTIONS(4058), - [aux_sym_attribute_token1] = ACTIONS(4061), - [aux_sym__inline_directive_token1] = ACTIONS(4064), - [anon_sym_ATfragment] = ACTIONS(4067), - [anon_sym_ATsection] = ACTIONS(4070), - [anon_sym_ATonce] = ACTIONS(4073), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATpush] = ACTIONS(4079), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4085), - [anon_sym_ATprepend] = ACTIONS(4088), - [anon_sym_ATprependOnce] = ACTIONS(4091), - [anon_sym_ATif] = ACTIONS(4094), - [anon_sym_ATunless] = ACTIONS(4097), - [anon_sym_ATisset] = ACTIONS(4100), - [anon_sym_ATempty] = ACTIONS(4103), - [anon_sym_ATauth] = ACTIONS(4106), - [anon_sym_ATguest] = ACTIONS(4109), - [anon_sym_ATproduction] = ACTIONS(4112), - [anon_sym_ATenv] = ACTIONS(4115), - [anon_sym_AThasSection] = ACTIONS(4118), - [anon_sym_ATsectionMissing] = ACTIONS(4121), - [anon_sym_ATerror] = ACTIONS(4124), - [aux_sym__custom_token1] = ACTIONS(4127), - [aux_sym__custom_token2] = ACTIONS(4130), - [anon_sym_ATswitch] = ACTIONS(4133), - [aux_sym_loop_operator_token1] = ACTIONS(4136), - [anon_sym_ATfor] = ACTIONS(4139), - [anon_sym_ATforeach] = ACTIONS(4142), - [anon_sym_ATforelse] = ACTIONS(4145), - [anon_sym_ATwhile] = ACTIONS(4148), - [anon_sym_ATendwhile] = ACTIONS(2541), - [anon_sym_ATpersist] = ACTIONS(4151), - [anon_sym_ATteleport] = ACTIONS(4154), - [anon_sym_ATvolt] = ACTIONS(4157), - [aux_sym_text_token1] = ACTIONS(4160), - [aux_sym_text_token2] = ACTIONS(4160), - [aux_sym_text_token3] = ACTIONS(4160), + [aux_sym_keyword_token1] = ACTIONS(4143), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4146), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4149), + [anon_sym_ATphp] = ACTIONS(4152), + [aux_sym_attribute_token1] = ACTIONS(4155), + [aux_sym__inline_directive_token1] = ACTIONS(4158), + [anon_sym_ATfragment] = ACTIONS(4161), + [anon_sym_ATsection] = ACTIONS(4164), + [anon_sym_ATonce] = ACTIONS(4167), + [anon_sym_ATverbatim] = ACTIONS(4170), + [anon_sym_ATpush] = ACTIONS(4173), + [anon_sym_ATpushOnce] = ACTIONS(4176), + [anon_sym_ATpushIf] = ACTIONS(4179), + [anon_sym_ATprepend] = ACTIONS(4182), + [anon_sym_ATprependOnce] = ACTIONS(4185), + [anon_sym_ATif] = ACTIONS(4188), + [anon_sym_ATunless] = ACTIONS(4191), + [anon_sym_ATisset] = ACTIONS(4194), + [anon_sym_ATempty] = ACTIONS(4197), + [anon_sym_ATauth] = ACTIONS(4200), + [anon_sym_ATguest] = ACTIONS(4203), + [anon_sym_ATproduction] = ACTIONS(4206), + [anon_sym_ATenv] = ACTIONS(4209), + [anon_sym_AThasSection] = ACTIONS(4212), + [anon_sym_ATsectionMissing] = ACTIONS(4215), + [anon_sym_ATerror] = ACTIONS(4218), + [aux_sym__custom_token1] = ACTIONS(4221), + [aux_sym__custom_token2] = ACTIONS(4224), + [anon_sym_ATswitch] = ACTIONS(4227), + [aux_sym_loop_operator_token1] = ACTIONS(4230), + [anon_sym_ATfor] = ACTIONS(4233), + [anon_sym_ATforeach] = ACTIONS(4236), + [anon_sym_ATforelse] = ACTIONS(4239), + [anon_sym_ATwhile] = ACTIONS(4242), + [anon_sym_ATendwhile] = ACTIONS(2599), + [anon_sym_ATpersist] = ACTIONS(4245), + [anon_sym_ATteleport] = ACTIONS(4248), + [anon_sym_ATvolt] = ACTIONS(4251), + [aux_sym_text_token1] = ACTIONS(4254), + [aux_sym_text_token2] = ACTIONS(4254), + [aux_sym_text_token3] = ACTIONS(4257), }, [334] = { [sym__definition] = STATE(1102), @@ -47667,47 +48068,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(176), [sym_text] = STATE(1732), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(4163), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4165), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4167), - [anon_sym_ATphp] = ACTIONS(4169), - [aux_sym_attribute_token1] = ACTIONS(4171), - [aux_sym__inline_directive_token1] = ACTIONS(4173), - [anon_sym_ATfragment] = ACTIONS(4175), - [anon_sym_ATsection] = ACTIONS(4177), - [anon_sym_ATonce] = ACTIONS(4179), - [anon_sym_ATverbatim] = ACTIONS(4181), - [anon_sym_ATpush] = ACTIONS(4183), - [anon_sym_ATpushOnce] = ACTIONS(4185), - [anon_sym_ATpushIf] = ACTIONS(4187), - [anon_sym_ATprepend] = ACTIONS(4189), - [anon_sym_ATprependOnce] = ACTIONS(4191), - [anon_sym_ATif] = ACTIONS(4193), - [anon_sym_ATunless] = ACTIONS(4195), - [anon_sym_ATisset] = ACTIONS(4197), - [anon_sym_ATempty] = ACTIONS(4199), - [anon_sym_ATauth] = ACTIONS(4201), - [anon_sym_ATguest] = ACTIONS(4203), - [anon_sym_ATproduction] = ACTIONS(4205), - [anon_sym_ATenv] = ACTIONS(4207), - [anon_sym_AThasSection] = ACTIONS(4209), - [anon_sym_ATsectionMissing] = ACTIONS(4211), - [anon_sym_ATerror] = ACTIONS(4213), - [aux_sym__custom_token1] = ACTIONS(4215), - [aux_sym__custom_token2] = ACTIONS(4217), - [anon_sym_ATswitch] = ACTIONS(4219), - [aux_sym_loop_operator_token1] = ACTIONS(4221), - [anon_sym_ATfor] = ACTIONS(4223), - [anon_sym_ATforeach] = ACTIONS(4225), - [anon_sym_ATforelse] = ACTIONS(4227), - [anon_sym_ATwhile] = ACTIONS(4229), - [anon_sym_ATpersist] = ACTIONS(4231), - [anon_sym_ATteleport] = ACTIONS(4233), - [anon_sym_ATendteleport] = ACTIONS(2567), - [anon_sym_ATvolt] = ACTIONS(4235), - [aux_sym_text_token1] = ACTIONS(4237), - [aux_sym_text_token2] = ACTIONS(4237), - [aux_sym_text_token3] = ACTIONS(4237), + [aux_sym_keyword_token1] = ACTIONS(4260), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4262), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4264), + [anon_sym_ATphp] = ACTIONS(4266), + [aux_sym_attribute_token1] = ACTIONS(4268), + [aux_sym__inline_directive_token1] = ACTIONS(4270), + [anon_sym_ATfragment] = ACTIONS(4272), + [anon_sym_ATsection] = ACTIONS(4274), + [anon_sym_ATonce] = ACTIONS(4276), + [anon_sym_ATverbatim] = ACTIONS(4278), + [anon_sym_ATpush] = ACTIONS(4280), + [anon_sym_ATpushOnce] = ACTIONS(4282), + [anon_sym_ATpushIf] = ACTIONS(4284), + [anon_sym_ATprepend] = ACTIONS(4286), + [anon_sym_ATprependOnce] = ACTIONS(4288), + [anon_sym_ATif] = ACTIONS(4290), + [anon_sym_ATunless] = ACTIONS(4292), + [anon_sym_ATisset] = ACTIONS(4294), + [anon_sym_ATempty] = ACTIONS(4296), + [anon_sym_ATauth] = ACTIONS(4298), + [anon_sym_ATguest] = ACTIONS(4300), + [anon_sym_ATproduction] = ACTIONS(4302), + [anon_sym_ATenv] = ACTIONS(4304), + [anon_sym_AThasSection] = ACTIONS(4306), + [anon_sym_ATsectionMissing] = ACTIONS(4308), + [anon_sym_ATerror] = ACTIONS(4310), + [aux_sym__custom_token1] = ACTIONS(4312), + [aux_sym__custom_token2] = ACTIONS(4314), + [anon_sym_ATswitch] = ACTIONS(4316), + [aux_sym_loop_operator_token1] = ACTIONS(4318), + [anon_sym_ATfor] = ACTIONS(4320), + [anon_sym_ATforeach] = ACTIONS(4322), + [anon_sym_ATforelse] = ACTIONS(4324), + [anon_sym_ATwhile] = ACTIONS(4326), + [anon_sym_ATpersist] = ACTIONS(4328), + [anon_sym_ATteleport] = ACTIONS(4330), + [anon_sym_ATendteleport] = ACTIONS(2628), + [anon_sym_ATvolt] = ACTIONS(4332), + [aux_sym_text_token1] = ACTIONS(4334), + [aux_sym_text_token2] = ACTIONS(4334), + [aux_sym_text_token3] = ACTIONS(4336), }, [335] = { [sym__definition] = STATE(1102), @@ -47759,47 +48160,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(334), [sym_text] = STATE(1732), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(4163), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4165), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4167), - [anon_sym_ATphp] = ACTIONS(4169), - [aux_sym_attribute_token1] = ACTIONS(4171), - [aux_sym__inline_directive_token1] = ACTIONS(4173), - [anon_sym_ATfragment] = ACTIONS(4175), - [anon_sym_ATsection] = ACTIONS(4177), - [anon_sym_ATonce] = ACTIONS(4179), - [anon_sym_ATverbatim] = ACTIONS(4181), - [anon_sym_ATpush] = ACTIONS(4183), - [anon_sym_ATpushOnce] = ACTIONS(4185), - [anon_sym_ATpushIf] = ACTIONS(4187), - [anon_sym_ATprepend] = ACTIONS(4189), - [anon_sym_ATprependOnce] = ACTIONS(4191), - [anon_sym_ATif] = ACTIONS(4193), - [anon_sym_ATunless] = ACTIONS(4195), - [anon_sym_ATisset] = ACTIONS(4197), - [anon_sym_ATempty] = ACTIONS(4199), - [anon_sym_ATauth] = ACTIONS(4201), - [anon_sym_ATguest] = ACTIONS(4203), - [anon_sym_ATproduction] = ACTIONS(4205), - [anon_sym_ATenv] = ACTIONS(4207), - [anon_sym_AThasSection] = ACTIONS(4209), - [anon_sym_ATsectionMissing] = ACTIONS(4211), - [anon_sym_ATerror] = ACTIONS(4213), - [aux_sym__custom_token1] = ACTIONS(4215), - [aux_sym__custom_token2] = ACTIONS(4217), - [anon_sym_ATswitch] = ACTIONS(4219), - [aux_sym_loop_operator_token1] = ACTIONS(4221), - [anon_sym_ATfor] = ACTIONS(4223), - [anon_sym_ATforeach] = ACTIONS(4225), - [anon_sym_ATforelse] = ACTIONS(4227), - [anon_sym_ATwhile] = ACTIONS(4229), - [anon_sym_ATpersist] = ACTIONS(4231), - [anon_sym_ATteleport] = ACTIONS(4233), - [anon_sym_ATendteleport] = ACTIONS(2671), - [anon_sym_ATvolt] = ACTIONS(4235), - [aux_sym_text_token1] = ACTIONS(4237), - [aux_sym_text_token2] = ACTIONS(4237), - [aux_sym_text_token3] = ACTIONS(4237), + [aux_sym_keyword_token1] = ACTIONS(4260), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4262), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4264), + [anon_sym_ATphp] = ACTIONS(4266), + [aux_sym_attribute_token1] = ACTIONS(4268), + [aux_sym__inline_directive_token1] = ACTIONS(4270), + [anon_sym_ATfragment] = ACTIONS(4272), + [anon_sym_ATsection] = ACTIONS(4274), + [anon_sym_ATonce] = ACTIONS(4276), + [anon_sym_ATverbatim] = ACTIONS(4278), + [anon_sym_ATpush] = ACTIONS(4280), + [anon_sym_ATpushOnce] = ACTIONS(4282), + [anon_sym_ATpushIf] = ACTIONS(4284), + [anon_sym_ATprepend] = ACTIONS(4286), + [anon_sym_ATprependOnce] = ACTIONS(4288), + [anon_sym_ATif] = ACTIONS(4290), + [anon_sym_ATunless] = ACTIONS(4292), + [anon_sym_ATisset] = ACTIONS(4294), + [anon_sym_ATempty] = ACTIONS(4296), + [anon_sym_ATauth] = ACTIONS(4298), + [anon_sym_ATguest] = ACTIONS(4300), + [anon_sym_ATproduction] = ACTIONS(4302), + [anon_sym_ATenv] = ACTIONS(4304), + [anon_sym_AThasSection] = ACTIONS(4306), + [anon_sym_ATsectionMissing] = ACTIONS(4308), + [anon_sym_ATerror] = ACTIONS(4310), + [aux_sym__custom_token1] = ACTIONS(4312), + [aux_sym__custom_token2] = ACTIONS(4314), + [anon_sym_ATswitch] = ACTIONS(4316), + [aux_sym_loop_operator_token1] = ACTIONS(4318), + [anon_sym_ATfor] = ACTIONS(4320), + [anon_sym_ATforeach] = ACTIONS(4322), + [anon_sym_ATforelse] = ACTIONS(4324), + [anon_sym_ATwhile] = ACTIONS(4326), + [anon_sym_ATpersist] = ACTIONS(4328), + [anon_sym_ATteleport] = ACTIONS(4330), + [anon_sym_ATendteleport] = ACTIONS(2734), + [anon_sym_ATvolt] = ACTIONS(4332), + [aux_sym_text_token1] = ACTIONS(4334), + [aux_sym_text_token2] = ACTIONS(4334), + [aux_sym_text_token3] = ACTIONS(4336), }, [336] = { [sym__definition] = STATE(1146), @@ -47851,47 +48252,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(336), [sym_text] = STATE(1791), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(4239), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4242), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4245), - [anon_sym_ATphp] = ACTIONS(4248), - [aux_sym_attribute_token1] = ACTIONS(4251), - [aux_sym__inline_directive_token1] = ACTIONS(4254), - [anon_sym_ATfragment] = ACTIONS(4257), - [anon_sym_ATsection] = ACTIONS(4260), - [anon_sym_ATonce] = ACTIONS(4263), - [anon_sym_ATverbatim] = ACTIONS(4266), - [anon_sym_ATpush] = ACTIONS(4269), - [anon_sym_ATpushOnce] = ACTIONS(4272), - [anon_sym_ATpushIf] = ACTIONS(4275), - [anon_sym_ATprepend] = ACTIONS(4278), - [anon_sym_ATprependOnce] = ACTIONS(4281), - [anon_sym_ATif] = ACTIONS(4284), - [anon_sym_ATunless] = ACTIONS(4287), - [anon_sym_ATisset] = ACTIONS(4290), - [anon_sym_ATempty] = ACTIONS(4293), - [anon_sym_ATauth] = ACTIONS(4296), - [anon_sym_ATguest] = ACTIONS(4299), - [anon_sym_ATproduction] = ACTIONS(4302), - [anon_sym_ATenv] = ACTIONS(4305), - [anon_sym_AThasSection] = ACTIONS(4308), - [anon_sym_ATsectionMissing] = ACTIONS(4311), - [anon_sym_ATerror] = ACTIONS(4314), - [aux_sym__custom_token1] = ACTIONS(4317), - [aux_sym__custom_token2] = ACTIONS(4320), - [anon_sym_ATswitch] = ACTIONS(4323), - [aux_sym_loop_operator_token1] = ACTIONS(4326), - [anon_sym_ATfor] = ACTIONS(4329), - [anon_sym_ATforeach] = ACTIONS(4332), - [anon_sym_ATforelse] = ACTIONS(4335), - [anon_sym_ATwhile] = ACTIONS(4338), - [anon_sym_ATpersist] = ACTIONS(4341), - [anon_sym_ATteleport] = ACTIONS(4344), - [anon_sym_ATvolt] = ACTIONS(4347), - [anon_sym_ATendvolt] = ACTIONS(2541), - [aux_sym_text_token1] = ACTIONS(4350), - [aux_sym_text_token2] = ACTIONS(4350), - [aux_sym_text_token3] = ACTIONS(4350), + [aux_sym_keyword_token1] = ACTIONS(4338), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4344), + [anon_sym_ATphp] = ACTIONS(4347), + [aux_sym_attribute_token1] = ACTIONS(4350), + [aux_sym__inline_directive_token1] = ACTIONS(4353), + [anon_sym_ATfragment] = ACTIONS(4356), + [anon_sym_ATsection] = ACTIONS(4359), + [anon_sym_ATonce] = ACTIONS(4362), + [anon_sym_ATverbatim] = ACTIONS(4365), + [anon_sym_ATpush] = ACTIONS(4368), + [anon_sym_ATpushOnce] = ACTIONS(4371), + [anon_sym_ATpushIf] = ACTIONS(4374), + [anon_sym_ATprepend] = ACTIONS(4377), + [anon_sym_ATprependOnce] = ACTIONS(4380), + [anon_sym_ATif] = ACTIONS(4383), + [anon_sym_ATunless] = ACTIONS(4386), + [anon_sym_ATisset] = ACTIONS(4389), + [anon_sym_ATempty] = ACTIONS(4392), + [anon_sym_ATauth] = ACTIONS(4395), + [anon_sym_ATguest] = ACTIONS(4398), + [anon_sym_ATproduction] = ACTIONS(4401), + [anon_sym_ATenv] = ACTIONS(4404), + [anon_sym_AThasSection] = ACTIONS(4407), + [anon_sym_ATsectionMissing] = ACTIONS(4410), + [anon_sym_ATerror] = ACTIONS(4413), + [aux_sym__custom_token1] = ACTIONS(4416), + [aux_sym__custom_token2] = ACTIONS(4419), + [anon_sym_ATswitch] = ACTIONS(4422), + [aux_sym_loop_operator_token1] = ACTIONS(4425), + [anon_sym_ATfor] = ACTIONS(4428), + [anon_sym_ATforeach] = ACTIONS(4431), + [anon_sym_ATforelse] = ACTIONS(4434), + [anon_sym_ATwhile] = ACTIONS(4437), + [anon_sym_ATpersist] = ACTIONS(4440), + [anon_sym_ATteleport] = ACTIONS(4443), + [anon_sym_ATvolt] = ACTIONS(4446), + [anon_sym_ATendvolt] = ACTIONS(2599), + [aux_sym_text_token1] = ACTIONS(4449), + [aux_sym_text_token2] = ACTIONS(4449), + [aux_sym_text_token3] = ACTIONS(4452), }, [337] = { [sym__definition] = STATE(2111), @@ -47943,47 +48344,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(339), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(3667), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(3753), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [338] = { [sym__definition] = STATE(2111), @@ -48035,47 +48436,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(376), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(4353), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(4455), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [339] = { [sym__definition] = STATE(2111), @@ -48127,47 +48528,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(4355), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(4457), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [340] = { [sym__definition] = STATE(1202), @@ -48219,47 +48620,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(340), [sym_text] = STATE(1555), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(4357), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4360), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4363), - [anon_sym_ATphp] = ACTIONS(4366), - [aux_sym_attribute_token1] = ACTIONS(4369), - [aux_sym__inline_directive_token1] = ACTIONS(4372), - [anon_sym_ATfragment] = ACTIONS(4375), - [anon_sym_ATsection] = ACTIONS(4378), - [anon_sym_ATonce] = ACTIONS(4381), - [anon_sym_ATverbatim] = ACTIONS(4384), - [anon_sym_ATpush] = ACTIONS(4387), - [anon_sym_ATpushOnce] = ACTIONS(4390), - [anon_sym_ATpushIf] = ACTIONS(4393), - [anon_sym_ATprepend] = ACTIONS(4396), - [anon_sym_ATprependOnce] = ACTIONS(4399), - [anon_sym_ATif] = ACTIONS(4402), - [anon_sym_ATunless] = ACTIONS(4405), - [anon_sym_ATisset] = ACTIONS(4408), - [anon_sym_ATempty] = ACTIONS(4411), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4417), - [anon_sym_ATproduction] = ACTIONS(4420), - [anon_sym_ATenv] = ACTIONS(4423), - [anon_sym_AThasSection] = ACTIONS(4426), - [anon_sym_ATsectionMissing] = ACTIONS(4429), - [anon_sym_ATerror] = ACTIONS(4432), - [aux_sym__custom_token1] = ACTIONS(4435), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4441), - [aux_sym_loop_operator_token1] = ACTIONS(4444), - [anon_sym_ATfor] = ACTIONS(4447), - [anon_sym_ATforeach] = ACTIONS(4450), - [anon_sym_ATforelse] = ACTIONS(4453), - [anon_sym_ATendforelse] = ACTIONS(2541), - [anon_sym_ATwhile] = ACTIONS(4456), - [anon_sym_ATpersist] = ACTIONS(4459), - [anon_sym_ATteleport] = ACTIONS(4462), - [anon_sym_ATvolt] = ACTIONS(4465), - [aux_sym_text_token1] = ACTIONS(4468), - [aux_sym_text_token2] = ACTIONS(4468), - [aux_sym_text_token3] = ACTIONS(4468), + [aux_sym_keyword_token1] = ACTIONS(4459), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4462), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4465), + [anon_sym_ATphp] = ACTIONS(4468), + [aux_sym_attribute_token1] = ACTIONS(4471), + [aux_sym__inline_directive_token1] = ACTIONS(4474), + [anon_sym_ATfragment] = ACTIONS(4477), + [anon_sym_ATsection] = ACTIONS(4480), + [anon_sym_ATonce] = ACTIONS(4483), + [anon_sym_ATverbatim] = ACTIONS(4486), + [anon_sym_ATpush] = ACTIONS(4489), + [anon_sym_ATpushOnce] = ACTIONS(4492), + [anon_sym_ATpushIf] = ACTIONS(4495), + [anon_sym_ATprepend] = ACTIONS(4498), + [anon_sym_ATprependOnce] = ACTIONS(4501), + [anon_sym_ATif] = ACTIONS(4504), + [anon_sym_ATunless] = ACTIONS(4507), + [anon_sym_ATisset] = ACTIONS(4510), + [anon_sym_ATempty] = ACTIONS(4513), + [anon_sym_ATauth] = ACTIONS(4516), + [anon_sym_ATguest] = ACTIONS(4519), + [anon_sym_ATproduction] = ACTIONS(4522), + [anon_sym_ATenv] = ACTIONS(4525), + [anon_sym_AThasSection] = ACTIONS(4528), + [anon_sym_ATsectionMissing] = ACTIONS(4531), + [anon_sym_ATerror] = ACTIONS(4534), + [aux_sym__custom_token1] = ACTIONS(4537), + [aux_sym__custom_token2] = ACTIONS(4540), + [anon_sym_ATswitch] = ACTIONS(4543), + [aux_sym_loop_operator_token1] = ACTIONS(4546), + [anon_sym_ATfor] = ACTIONS(4549), + [anon_sym_ATforeach] = ACTIONS(4552), + [anon_sym_ATforelse] = ACTIONS(4555), + [anon_sym_ATendforelse] = ACTIONS(2599), + [anon_sym_ATwhile] = ACTIONS(4558), + [anon_sym_ATpersist] = ACTIONS(4561), + [anon_sym_ATteleport] = ACTIONS(4564), + [anon_sym_ATvolt] = ACTIONS(4567), + [aux_sym_text_token1] = ACTIONS(4570), + [aux_sym_text_token2] = ACTIONS(4570), + [aux_sym_text_token3] = ACTIONS(4573), }, [341] = { [sym__definition] = STATE(1104), @@ -48311,47 +48712,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(255), [sym_text] = STATE(1673), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(4471), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4473), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4475), - [anon_sym_ATphp] = ACTIONS(4477), - [aux_sym_attribute_token1] = ACTIONS(4479), - [aux_sym__inline_directive_token1] = ACTIONS(4481), - [anon_sym_ATfragment] = ACTIONS(4483), - [anon_sym_ATsection] = ACTIONS(4485), - [anon_sym_ATonce] = ACTIONS(4487), - [anon_sym_ATverbatim] = ACTIONS(4489), - [anon_sym_ATpush] = ACTIONS(4491), - [anon_sym_ATpushOnce] = ACTIONS(4493), - [anon_sym_ATpushIf] = ACTIONS(4495), - [anon_sym_ATprepend] = ACTIONS(4497), - [anon_sym_ATprependOnce] = ACTIONS(4499), - [anon_sym_ATif] = ACTIONS(4501), - [anon_sym_ATunless] = ACTIONS(4503), - [anon_sym_ATisset] = ACTIONS(4505), - [anon_sym_ATempty] = ACTIONS(4507), - [anon_sym_ATauth] = ACTIONS(4509), - [anon_sym_ATguest] = ACTIONS(4511), - [anon_sym_ATproduction] = ACTIONS(4513), - [anon_sym_ATenv] = ACTIONS(4515), - [anon_sym_AThasSection] = ACTIONS(4517), - [anon_sym_ATsectionMissing] = ACTIONS(4519), - [anon_sym_ATerror] = ACTIONS(4521), - [aux_sym__custom_token1] = ACTIONS(4523), - [aux_sym__custom_token2] = ACTIONS(4525), - [anon_sym_ATswitch] = ACTIONS(4527), - [aux_sym_loop_operator_token1] = ACTIONS(4529), - [anon_sym_ATfor] = ACTIONS(4531), - [anon_sym_ATforeach] = ACTIONS(4533), - [anon_sym_ATforelse] = ACTIONS(4535), - [anon_sym_ATwhile] = ACTIONS(4537), - [anon_sym_ATpersist] = ACTIONS(4539), - [anon_sym_ATendpersist] = ACTIONS(2567), - [anon_sym_ATteleport] = ACTIONS(4541), - [anon_sym_ATvolt] = ACTIONS(4543), - [aux_sym_text_token1] = ACTIONS(4545), - [aux_sym_text_token2] = ACTIONS(4545), - [aux_sym_text_token3] = ACTIONS(4545), + [aux_sym_keyword_token1] = ACTIONS(4576), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4578), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4580), + [anon_sym_ATphp] = ACTIONS(4582), + [aux_sym_attribute_token1] = ACTIONS(4584), + [aux_sym__inline_directive_token1] = ACTIONS(4586), + [anon_sym_ATfragment] = ACTIONS(4588), + [anon_sym_ATsection] = ACTIONS(4590), + [anon_sym_ATonce] = ACTIONS(4592), + [anon_sym_ATverbatim] = ACTIONS(4594), + [anon_sym_ATpush] = ACTIONS(4596), + [anon_sym_ATpushOnce] = ACTIONS(4598), + [anon_sym_ATpushIf] = ACTIONS(4600), + [anon_sym_ATprepend] = ACTIONS(4602), + [anon_sym_ATprependOnce] = ACTIONS(4604), + [anon_sym_ATif] = ACTIONS(4606), + [anon_sym_ATunless] = ACTIONS(4608), + [anon_sym_ATisset] = ACTIONS(4610), + [anon_sym_ATempty] = ACTIONS(4612), + [anon_sym_ATauth] = ACTIONS(4614), + [anon_sym_ATguest] = ACTIONS(4616), + [anon_sym_ATproduction] = ACTIONS(4618), + [anon_sym_ATenv] = ACTIONS(4620), + [anon_sym_AThasSection] = ACTIONS(4622), + [anon_sym_ATsectionMissing] = ACTIONS(4624), + [anon_sym_ATerror] = ACTIONS(4626), + [aux_sym__custom_token1] = ACTIONS(4628), + [aux_sym__custom_token2] = ACTIONS(4630), + [anon_sym_ATswitch] = ACTIONS(4632), + [aux_sym_loop_operator_token1] = ACTIONS(4634), + [anon_sym_ATfor] = ACTIONS(4636), + [anon_sym_ATforeach] = ACTIONS(4638), + [anon_sym_ATforelse] = ACTIONS(4640), + [anon_sym_ATwhile] = ACTIONS(4642), + [anon_sym_ATpersist] = ACTIONS(4644), + [anon_sym_ATendpersist] = ACTIONS(2628), + [anon_sym_ATteleport] = ACTIONS(4646), + [anon_sym_ATvolt] = ACTIONS(4648), + [aux_sym_text_token1] = ACTIONS(4650), + [aux_sym_text_token2] = ACTIONS(4650), + [aux_sym_text_token3] = ACTIONS(4652), }, [342] = { [sym__definition] = STATE(1104), @@ -48403,47 +48804,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(341), [sym_text] = STATE(1673), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(4471), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4473), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4475), - [anon_sym_ATphp] = ACTIONS(4477), - [aux_sym_attribute_token1] = ACTIONS(4479), - [aux_sym__inline_directive_token1] = ACTIONS(4481), - [anon_sym_ATfragment] = ACTIONS(4483), - [anon_sym_ATsection] = ACTIONS(4485), - [anon_sym_ATonce] = ACTIONS(4487), - [anon_sym_ATverbatim] = ACTIONS(4489), - [anon_sym_ATpush] = ACTIONS(4491), - [anon_sym_ATpushOnce] = ACTIONS(4493), - [anon_sym_ATpushIf] = ACTIONS(4495), - [anon_sym_ATprepend] = ACTIONS(4497), - [anon_sym_ATprependOnce] = ACTIONS(4499), - [anon_sym_ATif] = ACTIONS(4501), - [anon_sym_ATunless] = ACTIONS(4503), - [anon_sym_ATisset] = ACTIONS(4505), - [anon_sym_ATempty] = ACTIONS(4507), - [anon_sym_ATauth] = ACTIONS(4509), - [anon_sym_ATguest] = ACTIONS(4511), - [anon_sym_ATproduction] = ACTIONS(4513), - [anon_sym_ATenv] = ACTIONS(4515), - [anon_sym_AThasSection] = ACTIONS(4517), - [anon_sym_ATsectionMissing] = ACTIONS(4519), - [anon_sym_ATerror] = ACTIONS(4521), - [aux_sym__custom_token1] = ACTIONS(4523), - [aux_sym__custom_token2] = ACTIONS(4525), - [anon_sym_ATswitch] = ACTIONS(4527), - [aux_sym_loop_operator_token1] = ACTIONS(4529), - [anon_sym_ATfor] = ACTIONS(4531), - [anon_sym_ATforeach] = ACTIONS(4533), - [anon_sym_ATforelse] = ACTIONS(4535), - [anon_sym_ATwhile] = ACTIONS(4537), - [anon_sym_ATpersist] = ACTIONS(4539), - [anon_sym_ATendpersist] = ACTIONS(2671), - [anon_sym_ATteleport] = ACTIONS(4541), - [anon_sym_ATvolt] = ACTIONS(4543), - [aux_sym_text_token1] = ACTIONS(4545), - [aux_sym_text_token2] = ACTIONS(4545), - [aux_sym_text_token3] = ACTIONS(4545), + [aux_sym_keyword_token1] = ACTIONS(4576), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4578), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4580), + [anon_sym_ATphp] = ACTIONS(4582), + [aux_sym_attribute_token1] = ACTIONS(4584), + [aux_sym__inline_directive_token1] = ACTIONS(4586), + [anon_sym_ATfragment] = ACTIONS(4588), + [anon_sym_ATsection] = ACTIONS(4590), + [anon_sym_ATonce] = ACTIONS(4592), + [anon_sym_ATverbatim] = ACTIONS(4594), + [anon_sym_ATpush] = ACTIONS(4596), + [anon_sym_ATpushOnce] = ACTIONS(4598), + [anon_sym_ATpushIf] = ACTIONS(4600), + [anon_sym_ATprepend] = ACTIONS(4602), + [anon_sym_ATprependOnce] = ACTIONS(4604), + [anon_sym_ATif] = ACTIONS(4606), + [anon_sym_ATunless] = ACTIONS(4608), + [anon_sym_ATisset] = ACTIONS(4610), + [anon_sym_ATempty] = ACTIONS(4612), + [anon_sym_ATauth] = ACTIONS(4614), + [anon_sym_ATguest] = ACTIONS(4616), + [anon_sym_ATproduction] = ACTIONS(4618), + [anon_sym_ATenv] = ACTIONS(4620), + [anon_sym_AThasSection] = ACTIONS(4622), + [anon_sym_ATsectionMissing] = ACTIONS(4624), + [anon_sym_ATerror] = ACTIONS(4626), + [aux_sym__custom_token1] = ACTIONS(4628), + [aux_sym__custom_token2] = ACTIONS(4630), + [anon_sym_ATswitch] = ACTIONS(4632), + [aux_sym_loop_operator_token1] = ACTIONS(4634), + [anon_sym_ATfor] = ACTIONS(4636), + [anon_sym_ATforeach] = ACTIONS(4638), + [anon_sym_ATforelse] = ACTIONS(4640), + [anon_sym_ATwhile] = ACTIONS(4642), + [anon_sym_ATpersist] = ACTIONS(4644), + [anon_sym_ATendpersist] = ACTIONS(2734), + [anon_sym_ATteleport] = ACTIONS(4646), + [anon_sym_ATvolt] = ACTIONS(4648), + [aux_sym_text_token1] = ACTIONS(4650), + [aux_sym_text_token2] = ACTIONS(4650), + [aux_sym_text_token3] = ACTIONS(4652), }, [343] = { [sym__definition] = STATE(2111), @@ -48495,47 +48896,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(4547), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(4654), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [344] = { [sym__definition] = STATE(1207), @@ -48587,47 +48988,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(344), [sym_text] = STATE(1909), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(4549), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4552), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4555), - [anon_sym_ATphp] = ACTIONS(4558), - [aux_sym_attribute_token1] = ACTIONS(4561), - [aux_sym__inline_directive_token1] = ACTIONS(4564), - [anon_sym_ATfragment] = ACTIONS(4567), - [anon_sym_ATsection] = ACTIONS(4570), - [anon_sym_ATonce] = ACTIONS(4573), - [anon_sym_ATverbatim] = ACTIONS(4576), - [anon_sym_ATpush] = ACTIONS(4579), - [anon_sym_ATpushOnce] = ACTIONS(4582), - [anon_sym_ATpushIf] = ACTIONS(4585), - [anon_sym_ATprepend] = ACTIONS(4588), - [anon_sym_ATprependOnce] = ACTIONS(4591), - [anon_sym_ATif] = ACTIONS(4594), - [anon_sym_ATunless] = ACTIONS(4597), - [anon_sym_ATisset] = ACTIONS(4600), - [anon_sym_ATempty] = ACTIONS(4603), - [anon_sym_ATauth] = ACTIONS(4606), - [anon_sym_ATguest] = ACTIONS(4609), - [anon_sym_ATproduction] = ACTIONS(4612), - [anon_sym_ATenv] = ACTIONS(4615), - [anon_sym_AThasSection] = ACTIONS(4618), - [anon_sym_ATsectionMissing] = ACTIONS(4621), - [anon_sym_ATerror] = ACTIONS(4624), - [aux_sym__custom_token1] = ACTIONS(4627), - [aux_sym__custom_token2] = ACTIONS(4630), - [anon_sym_ATswitch] = ACTIONS(4633), - [anon_sym_ATbreak] = ACTIONS(2541), - [aux_sym_loop_operator_token1] = ACTIONS(4636), - [anon_sym_ATfor] = ACTIONS(4639), - [anon_sym_ATforeach] = ACTIONS(4642), - [anon_sym_ATforelse] = ACTIONS(4645), - [anon_sym_ATwhile] = ACTIONS(4648), - [anon_sym_ATpersist] = ACTIONS(4651), - [anon_sym_ATteleport] = ACTIONS(4654), - [anon_sym_ATvolt] = ACTIONS(4657), - [aux_sym_text_token1] = ACTIONS(4660), - [aux_sym_text_token2] = ACTIONS(4660), - [aux_sym_text_token3] = ACTIONS(4660), + [aux_sym_keyword_token1] = ACTIONS(4656), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4659), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4662), + [anon_sym_ATphp] = ACTIONS(4665), + [aux_sym_attribute_token1] = ACTIONS(4668), + [aux_sym__inline_directive_token1] = ACTIONS(4671), + [anon_sym_ATfragment] = ACTIONS(4674), + [anon_sym_ATsection] = ACTIONS(4677), + [anon_sym_ATonce] = ACTIONS(4680), + [anon_sym_ATverbatim] = ACTIONS(4683), + [anon_sym_ATpush] = ACTIONS(4686), + [anon_sym_ATpushOnce] = ACTIONS(4689), + [anon_sym_ATpushIf] = ACTIONS(4692), + [anon_sym_ATprepend] = ACTIONS(4695), + [anon_sym_ATprependOnce] = ACTIONS(4698), + [anon_sym_ATif] = ACTIONS(4701), + [anon_sym_ATunless] = ACTIONS(4704), + [anon_sym_ATisset] = ACTIONS(4707), + [anon_sym_ATempty] = ACTIONS(4710), + [anon_sym_ATauth] = ACTIONS(4713), + [anon_sym_ATguest] = ACTIONS(4716), + [anon_sym_ATproduction] = ACTIONS(4719), + [anon_sym_ATenv] = ACTIONS(4722), + [anon_sym_AThasSection] = ACTIONS(4725), + [anon_sym_ATsectionMissing] = ACTIONS(4728), + [anon_sym_ATerror] = ACTIONS(4731), + [aux_sym__custom_token1] = ACTIONS(4734), + [aux_sym__custom_token2] = ACTIONS(4737), + [anon_sym_ATswitch] = ACTIONS(4740), + [anon_sym_ATbreak] = ACTIONS(2599), + [aux_sym_loop_operator_token1] = ACTIONS(4743), + [anon_sym_ATfor] = ACTIONS(4746), + [anon_sym_ATforeach] = ACTIONS(4749), + [anon_sym_ATforelse] = ACTIONS(4752), + [anon_sym_ATwhile] = ACTIONS(4755), + [anon_sym_ATpersist] = ACTIONS(4758), + [anon_sym_ATteleport] = ACTIONS(4761), + [anon_sym_ATvolt] = ACTIONS(4764), + [aux_sym_text_token1] = ACTIONS(4767), + [aux_sym_text_token2] = ACTIONS(4767), + [aux_sym_text_token3] = ACTIONS(4770), }, [345] = { [sym__definition] = STATE(1546), @@ -48679,47 +49080,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(331), [sym_text] = STATE(1211), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(3973), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3975), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3977), - [anon_sym_ATphp] = ACTIONS(3979), - [aux_sym_attribute_token1] = ACTIONS(3981), - [aux_sym__inline_directive_token1] = ACTIONS(3983), - [anon_sym_ATfragment] = ACTIONS(3985), - [anon_sym_ATsection] = ACTIONS(3987), - [anon_sym_ATonce] = ACTIONS(3989), - [anon_sym_ATverbatim] = ACTIONS(3991), - [anon_sym_ATpush] = ACTIONS(3993), - [anon_sym_ATpushOnce] = ACTIONS(3995), - [anon_sym_ATpushIf] = ACTIONS(3997), - [anon_sym_ATprepend] = ACTIONS(3999), - [anon_sym_ATendprepend] = ACTIONS(2671), - [anon_sym_ATprependOnce] = ACTIONS(4001), - [anon_sym_ATif] = ACTIONS(4003), - [anon_sym_ATunless] = ACTIONS(4005), - [anon_sym_ATisset] = ACTIONS(4007), - [anon_sym_ATempty] = ACTIONS(4009), - [anon_sym_ATauth] = ACTIONS(4011), - [anon_sym_ATguest] = ACTIONS(4013), - [anon_sym_ATproduction] = ACTIONS(4015), - [anon_sym_ATenv] = ACTIONS(4017), - [anon_sym_AThasSection] = ACTIONS(4019), - [anon_sym_ATsectionMissing] = ACTIONS(4021), - [anon_sym_ATerror] = ACTIONS(4023), - [aux_sym__custom_token1] = ACTIONS(4025), - [aux_sym__custom_token2] = ACTIONS(4027), - [anon_sym_ATswitch] = ACTIONS(4029), - [aux_sym_loop_operator_token1] = ACTIONS(4031), - [anon_sym_ATfor] = ACTIONS(4033), - [anon_sym_ATforeach] = ACTIONS(4035), - [anon_sym_ATforelse] = ACTIONS(4037), - [anon_sym_ATwhile] = ACTIONS(4039), - [anon_sym_ATpersist] = ACTIONS(4041), - [anon_sym_ATteleport] = ACTIONS(4043), - [anon_sym_ATvolt] = ACTIONS(4045), - [aux_sym_text_token1] = ACTIONS(4047), - [aux_sym_text_token2] = ACTIONS(4047), - [aux_sym_text_token3] = ACTIONS(4047), + [aux_sym_keyword_token1] = ACTIONS(4065), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4067), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4069), + [anon_sym_ATphp] = ACTIONS(4071), + [aux_sym_attribute_token1] = ACTIONS(4073), + [aux_sym__inline_directive_token1] = ACTIONS(4075), + [anon_sym_ATfragment] = ACTIONS(4077), + [anon_sym_ATsection] = ACTIONS(4079), + [anon_sym_ATonce] = ACTIONS(4081), + [anon_sym_ATverbatim] = ACTIONS(4083), + [anon_sym_ATpush] = ACTIONS(4085), + [anon_sym_ATpushOnce] = ACTIONS(4087), + [anon_sym_ATpushIf] = ACTIONS(4089), + [anon_sym_ATprepend] = ACTIONS(4091), + [anon_sym_ATendprepend] = ACTIONS(2734), + [anon_sym_ATprependOnce] = ACTIONS(4093), + [anon_sym_ATif] = ACTIONS(4095), + [anon_sym_ATunless] = ACTIONS(4097), + [anon_sym_ATisset] = ACTIONS(4099), + [anon_sym_ATempty] = ACTIONS(4101), + [anon_sym_ATauth] = ACTIONS(4103), + [anon_sym_ATguest] = ACTIONS(4105), + [anon_sym_ATproduction] = ACTIONS(4107), + [anon_sym_ATenv] = ACTIONS(4109), + [anon_sym_AThasSection] = ACTIONS(4111), + [anon_sym_ATsectionMissing] = ACTIONS(4113), + [anon_sym_ATerror] = ACTIONS(4115), + [aux_sym__custom_token1] = ACTIONS(4117), + [aux_sym__custom_token2] = ACTIONS(4119), + [anon_sym_ATswitch] = ACTIONS(4121), + [aux_sym_loop_operator_token1] = ACTIONS(4123), + [anon_sym_ATfor] = ACTIONS(4125), + [anon_sym_ATforeach] = ACTIONS(4127), + [anon_sym_ATforelse] = ACTIONS(4129), + [anon_sym_ATwhile] = ACTIONS(4131), + [anon_sym_ATpersist] = ACTIONS(4133), + [anon_sym_ATteleport] = ACTIONS(4135), + [anon_sym_ATvolt] = ACTIONS(4137), + [aux_sym_text_token1] = ACTIONS(4139), + [aux_sym_text_token2] = ACTIONS(4139), + [aux_sym_text_token3] = ACTIONS(4141), }, [346] = { [sym__definition] = STATE(2111), @@ -48771,47 +49172,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(343), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(4663), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(4773), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [347] = { [sym__definition] = STATE(2012), @@ -48863,47 +49264,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(4665), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(4775), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [348] = { [sym__definition] = STATE(2061), @@ -48955,47 +49356,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(362), [sym_text] = STATE(1325), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(4667), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4669), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4671), - [anon_sym_ATphp] = ACTIONS(4673), - [aux_sym_attribute_token1] = ACTIONS(4675), - [aux_sym__inline_directive_token1] = ACTIONS(4677), - [anon_sym_ATfragment] = ACTIONS(4679), - [anon_sym_ATsection] = ACTIONS(4681), - [anon_sym_ATonce] = ACTIONS(4683), - [anon_sym_ATverbatim] = ACTIONS(4685), - [anon_sym_ATpush] = ACTIONS(4687), - [anon_sym_ATpushOnce] = ACTIONS(4689), - [anon_sym_ATendPushOnce] = ACTIONS(2671), - [anon_sym_ATpushIf] = ACTIONS(4691), - [anon_sym_ATprepend] = ACTIONS(4693), - [anon_sym_ATprependOnce] = ACTIONS(4695), - [anon_sym_ATif] = ACTIONS(4697), - [anon_sym_ATunless] = ACTIONS(4699), - [anon_sym_ATisset] = ACTIONS(4701), - [anon_sym_ATempty] = ACTIONS(4703), - [anon_sym_ATauth] = ACTIONS(4705), - [anon_sym_ATguest] = ACTIONS(4707), - [anon_sym_ATproduction] = ACTIONS(4709), - [anon_sym_ATenv] = ACTIONS(4711), - [anon_sym_AThasSection] = ACTIONS(4713), - [anon_sym_ATsectionMissing] = ACTIONS(4715), - [anon_sym_ATerror] = ACTIONS(4717), - [aux_sym__custom_token1] = ACTIONS(4719), - [aux_sym__custom_token2] = ACTIONS(4721), - [anon_sym_ATswitch] = ACTIONS(4723), - [aux_sym_loop_operator_token1] = ACTIONS(4725), - [anon_sym_ATfor] = ACTIONS(4727), - [anon_sym_ATforeach] = ACTIONS(4729), - [anon_sym_ATforelse] = ACTIONS(4731), - [anon_sym_ATwhile] = ACTIONS(4733), - [anon_sym_ATpersist] = ACTIONS(4735), - [anon_sym_ATteleport] = ACTIONS(4737), - [anon_sym_ATvolt] = ACTIONS(4739), - [aux_sym_text_token1] = ACTIONS(4741), - [aux_sym_text_token2] = ACTIONS(4741), - [aux_sym_text_token3] = ACTIONS(4741), + [aux_sym_keyword_token1] = ACTIONS(4777), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4779), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4781), + [anon_sym_ATphp] = ACTIONS(4783), + [aux_sym_attribute_token1] = ACTIONS(4785), + [aux_sym__inline_directive_token1] = ACTIONS(4787), + [anon_sym_ATfragment] = ACTIONS(4789), + [anon_sym_ATsection] = ACTIONS(4791), + [anon_sym_ATonce] = ACTIONS(4793), + [anon_sym_ATverbatim] = ACTIONS(4795), + [anon_sym_ATpush] = ACTIONS(4797), + [anon_sym_ATpushOnce] = ACTIONS(4799), + [anon_sym_ATendPushOnce] = ACTIONS(2734), + [anon_sym_ATpushIf] = ACTIONS(4801), + [anon_sym_ATprepend] = ACTIONS(4803), + [anon_sym_ATprependOnce] = ACTIONS(4805), + [anon_sym_ATif] = ACTIONS(4807), + [anon_sym_ATunless] = ACTIONS(4809), + [anon_sym_ATisset] = ACTIONS(4811), + [anon_sym_ATempty] = ACTIONS(4813), + [anon_sym_ATauth] = ACTIONS(4815), + [anon_sym_ATguest] = ACTIONS(4817), + [anon_sym_ATproduction] = ACTIONS(4819), + [anon_sym_ATenv] = ACTIONS(4821), + [anon_sym_AThasSection] = ACTIONS(4823), + [anon_sym_ATsectionMissing] = ACTIONS(4825), + [anon_sym_ATerror] = ACTIONS(4827), + [aux_sym__custom_token1] = ACTIONS(4829), + [aux_sym__custom_token2] = ACTIONS(4831), + [anon_sym_ATswitch] = ACTIONS(4833), + [aux_sym_loop_operator_token1] = ACTIONS(4835), + [anon_sym_ATfor] = ACTIONS(4837), + [anon_sym_ATforeach] = ACTIONS(4839), + [anon_sym_ATforelse] = ACTIONS(4841), + [anon_sym_ATwhile] = ACTIONS(4843), + [anon_sym_ATpersist] = ACTIONS(4845), + [anon_sym_ATteleport] = ACTIONS(4847), + [anon_sym_ATvolt] = ACTIONS(4849), + [aux_sym_text_token1] = ACTIONS(4851), + [aux_sym_text_token2] = ACTIONS(4851), + [aux_sym_text_token3] = ACTIONS(4853), }, [349] = { [sym__definition] = STATE(1259), @@ -49047,47 +49448,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(349), [sym_text] = STATE(1496), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(4743), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4746), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4749), - [anon_sym_ATphp] = ACTIONS(4752), - [aux_sym_attribute_token1] = ACTIONS(4755), - [aux_sym__inline_directive_token1] = ACTIONS(4758), - [anon_sym_ATfragment] = ACTIONS(4761), - [anon_sym_ATsection] = ACTIONS(4764), - [anon_sym_ATonce] = ACTIONS(4767), - [anon_sym_ATverbatim] = ACTIONS(4770), - [anon_sym_ATpush] = ACTIONS(4773), - [anon_sym_ATpushOnce] = ACTIONS(4776), - [anon_sym_ATpushIf] = ACTIONS(4779), - [anon_sym_ATprepend] = ACTIONS(4782), - [anon_sym_ATprependOnce] = ACTIONS(4785), - [anon_sym_ATif] = ACTIONS(4788), - [anon_sym_ATunless] = ACTIONS(4791), - [anon_sym_ATisset] = ACTIONS(4794), - [anon_sym_ATempty] = ACTIONS(4797), - [anon_sym_ATauth] = ACTIONS(4800), - [anon_sym_ATguest] = ACTIONS(4803), - [anon_sym_ATproduction] = ACTIONS(4806), - [anon_sym_ATenv] = ACTIONS(4809), - [anon_sym_AThasSection] = ACTIONS(4812), - [anon_sym_ATsectionMissing] = ACTIONS(4815), - [anon_sym_ATerror] = ACTIONS(4818), - [aux_sym__custom_token1] = ACTIONS(4821), - [aux_sym__custom_token2] = ACTIONS(4824), - [anon_sym_ATswitch] = ACTIONS(4827), - [aux_sym_loop_operator_token1] = ACTIONS(4830), - [anon_sym_ATfor] = ACTIONS(4833), - [anon_sym_ATforeach] = ACTIONS(4836), - [anon_sym_ATendforeach] = ACTIONS(2541), - [anon_sym_ATforelse] = ACTIONS(4839), - [anon_sym_ATwhile] = ACTIONS(4842), - [anon_sym_ATpersist] = ACTIONS(4845), - [anon_sym_ATteleport] = ACTIONS(4848), - [anon_sym_ATvolt] = ACTIONS(4851), - [aux_sym_text_token1] = ACTIONS(4854), - [aux_sym_text_token2] = ACTIONS(4854), - [aux_sym_text_token3] = ACTIONS(4854), + [aux_sym_keyword_token1] = ACTIONS(4855), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4858), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4861), + [anon_sym_ATphp] = ACTIONS(4864), + [aux_sym_attribute_token1] = ACTIONS(4867), + [aux_sym__inline_directive_token1] = ACTIONS(4870), + [anon_sym_ATfragment] = ACTIONS(4873), + [anon_sym_ATsection] = ACTIONS(4876), + [anon_sym_ATonce] = ACTIONS(4879), + [anon_sym_ATverbatim] = ACTIONS(4882), + [anon_sym_ATpush] = ACTIONS(4885), + [anon_sym_ATpushOnce] = ACTIONS(4888), + [anon_sym_ATpushIf] = ACTIONS(4891), + [anon_sym_ATprepend] = ACTIONS(4894), + [anon_sym_ATprependOnce] = ACTIONS(4897), + [anon_sym_ATif] = ACTIONS(4900), + [anon_sym_ATunless] = ACTIONS(4903), + [anon_sym_ATisset] = ACTIONS(4906), + [anon_sym_ATempty] = ACTIONS(4909), + [anon_sym_ATauth] = ACTIONS(4912), + [anon_sym_ATguest] = ACTIONS(4915), + [anon_sym_ATproduction] = ACTIONS(4918), + [anon_sym_ATenv] = ACTIONS(4921), + [anon_sym_AThasSection] = ACTIONS(4924), + [anon_sym_ATsectionMissing] = ACTIONS(4927), + [anon_sym_ATerror] = ACTIONS(4930), + [aux_sym__custom_token1] = ACTIONS(4933), + [aux_sym__custom_token2] = ACTIONS(4936), + [anon_sym_ATswitch] = ACTIONS(4939), + [aux_sym_loop_operator_token1] = ACTIONS(4942), + [anon_sym_ATfor] = ACTIONS(4945), + [anon_sym_ATforeach] = ACTIONS(4948), + [anon_sym_ATendforeach] = ACTIONS(2599), + [anon_sym_ATforelse] = ACTIONS(4951), + [anon_sym_ATwhile] = ACTIONS(4954), + [anon_sym_ATpersist] = ACTIONS(4957), + [anon_sym_ATteleport] = ACTIONS(4960), + [anon_sym_ATvolt] = ACTIONS(4963), + [aux_sym_text_token1] = ACTIONS(4966), + [aux_sym_text_token2] = ACTIONS(4966), + [aux_sym_text_token3] = ACTIONS(4969), }, [350] = { [sym__definition] = STATE(2012), @@ -49139,47 +49540,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(347), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(4857), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(4972), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [351] = { [sym__definition] = STATE(2012), @@ -49231,47 +49632,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(395), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(4859), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(4974), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [352] = { [sym__definition] = STATE(2012), @@ -49323,47 +49724,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(402), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(4861), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(4976), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [353] = { [sym__definition] = STATE(1144), @@ -49415,47 +49816,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(333), [sym_text] = STATE(1614), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(4863), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4865), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4867), - [anon_sym_ATphp] = ACTIONS(4869), - [aux_sym_attribute_token1] = ACTIONS(4871), - [aux_sym__inline_directive_token1] = ACTIONS(4873), - [anon_sym_ATfragment] = ACTIONS(4875), - [anon_sym_ATsection] = ACTIONS(4877), - [anon_sym_ATonce] = ACTIONS(4879), - [anon_sym_ATverbatim] = ACTIONS(4881), - [anon_sym_ATpush] = ACTIONS(4883), - [anon_sym_ATpushOnce] = ACTIONS(4885), - [anon_sym_ATpushIf] = ACTIONS(4887), - [anon_sym_ATprepend] = ACTIONS(4889), - [anon_sym_ATprependOnce] = ACTIONS(4891), - [anon_sym_ATif] = ACTIONS(4893), - [anon_sym_ATunless] = ACTIONS(4895), - [anon_sym_ATisset] = ACTIONS(4897), - [anon_sym_ATempty] = ACTIONS(4899), - [anon_sym_ATauth] = ACTIONS(4901), - [anon_sym_ATguest] = ACTIONS(4903), - [anon_sym_ATproduction] = ACTIONS(4905), - [anon_sym_ATenv] = ACTIONS(4907), - [anon_sym_AThasSection] = ACTIONS(4909), - [anon_sym_ATsectionMissing] = ACTIONS(4911), - [anon_sym_ATerror] = ACTIONS(4913), - [aux_sym__custom_token1] = ACTIONS(4915), - [aux_sym__custom_token2] = ACTIONS(4917), - [anon_sym_ATswitch] = ACTIONS(4919), - [aux_sym_loop_operator_token1] = ACTIONS(4921), - [anon_sym_ATfor] = ACTIONS(4923), - [anon_sym_ATforeach] = ACTIONS(4925), - [anon_sym_ATforelse] = ACTIONS(4927), - [anon_sym_ATwhile] = ACTIONS(4929), - [anon_sym_ATendwhile] = ACTIONS(2567), - [anon_sym_ATpersist] = ACTIONS(4931), - [anon_sym_ATteleport] = ACTIONS(4933), - [anon_sym_ATvolt] = ACTIONS(4935), - [aux_sym_text_token1] = ACTIONS(4937), - [aux_sym_text_token2] = ACTIONS(4937), - [aux_sym_text_token3] = ACTIONS(4937), + [aux_sym_keyword_token1] = ACTIONS(4978), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4980), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4982), + [anon_sym_ATphp] = ACTIONS(4984), + [aux_sym_attribute_token1] = ACTIONS(4986), + [aux_sym__inline_directive_token1] = ACTIONS(4988), + [anon_sym_ATfragment] = ACTIONS(4990), + [anon_sym_ATsection] = ACTIONS(4992), + [anon_sym_ATonce] = ACTIONS(4994), + [anon_sym_ATverbatim] = ACTIONS(4996), + [anon_sym_ATpush] = ACTIONS(4998), + [anon_sym_ATpushOnce] = ACTIONS(5000), + [anon_sym_ATpushIf] = ACTIONS(5002), + [anon_sym_ATprepend] = ACTIONS(5004), + [anon_sym_ATprependOnce] = ACTIONS(5006), + [anon_sym_ATif] = ACTIONS(5008), + [anon_sym_ATunless] = ACTIONS(5010), + [anon_sym_ATisset] = ACTIONS(5012), + [anon_sym_ATempty] = ACTIONS(5014), + [anon_sym_ATauth] = ACTIONS(5016), + [anon_sym_ATguest] = ACTIONS(5018), + [anon_sym_ATproduction] = ACTIONS(5020), + [anon_sym_ATenv] = ACTIONS(5022), + [anon_sym_AThasSection] = ACTIONS(5024), + [anon_sym_ATsectionMissing] = ACTIONS(5026), + [anon_sym_ATerror] = ACTIONS(5028), + [aux_sym__custom_token1] = ACTIONS(5030), + [aux_sym__custom_token2] = ACTIONS(5032), + [anon_sym_ATswitch] = ACTIONS(5034), + [aux_sym_loop_operator_token1] = ACTIONS(5036), + [anon_sym_ATfor] = ACTIONS(5038), + [anon_sym_ATforeach] = ACTIONS(5040), + [anon_sym_ATforelse] = ACTIONS(5042), + [anon_sym_ATwhile] = ACTIONS(5044), + [anon_sym_ATendwhile] = ACTIONS(2628), + [anon_sym_ATpersist] = ACTIONS(5046), + [anon_sym_ATteleport] = ACTIONS(5048), + [anon_sym_ATvolt] = ACTIONS(5050), + [aux_sym_text_token1] = ACTIONS(5052), + [aux_sym_text_token2] = ACTIONS(5052), + [aux_sym_text_token3] = ACTIONS(5054), }, [354] = { [sym__definition] = STATE(2111), @@ -49507,47 +49908,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(358), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(4939), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(5056), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [355] = { [sym__definition] = STATE(1144), @@ -49599,47 +50000,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(353), [sym_text] = STATE(1614), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(4863), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4865), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4867), - [anon_sym_ATphp] = ACTIONS(4869), - [aux_sym_attribute_token1] = ACTIONS(4871), - [aux_sym__inline_directive_token1] = ACTIONS(4873), - [anon_sym_ATfragment] = ACTIONS(4875), - [anon_sym_ATsection] = ACTIONS(4877), - [anon_sym_ATonce] = ACTIONS(4879), - [anon_sym_ATverbatim] = ACTIONS(4881), - [anon_sym_ATpush] = ACTIONS(4883), - [anon_sym_ATpushOnce] = ACTIONS(4885), - [anon_sym_ATpushIf] = ACTIONS(4887), - [anon_sym_ATprepend] = ACTIONS(4889), - [anon_sym_ATprependOnce] = ACTIONS(4891), - [anon_sym_ATif] = ACTIONS(4893), - [anon_sym_ATunless] = ACTIONS(4895), - [anon_sym_ATisset] = ACTIONS(4897), - [anon_sym_ATempty] = ACTIONS(4899), - [anon_sym_ATauth] = ACTIONS(4901), - [anon_sym_ATguest] = ACTIONS(4903), - [anon_sym_ATproduction] = ACTIONS(4905), - [anon_sym_ATenv] = ACTIONS(4907), - [anon_sym_AThasSection] = ACTIONS(4909), - [anon_sym_ATsectionMissing] = ACTIONS(4911), - [anon_sym_ATerror] = ACTIONS(4913), - [aux_sym__custom_token1] = ACTIONS(4915), - [aux_sym__custom_token2] = ACTIONS(4917), - [anon_sym_ATswitch] = ACTIONS(4919), - [aux_sym_loop_operator_token1] = ACTIONS(4921), - [anon_sym_ATfor] = ACTIONS(4923), - [anon_sym_ATforeach] = ACTIONS(4925), - [anon_sym_ATforelse] = ACTIONS(4927), - [anon_sym_ATwhile] = ACTIONS(4929), - [anon_sym_ATendwhile] = ACTIONS(2671), - [anon_sym_ATpersist] = ACTIONS(4931), - [anon_sym_ATteleport] = ACTIONS(4933), - [anon_sym_ATvolt] = ACTIONS(4935), - [aux_sym_text_token1] = ACTIONS(4937), - [aux_sym_text_token2] = ACTIONS(4937), - [aux_sym_text_token3] = ACTIONS(4937), + [aux_sym_keyword_token1] = ACTIONS(4978), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4980), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4982), + [anon_sym_ATphp] = ACTIONS(4984), + [aux_sym_attribute_token1] = ACTIONS(4986), + [aux_sym__inline_directive_token1] = ACTIONS(4988), + [anon_sym_ATfragment] = ACTIONS(4990), + [anon_sym_ATsection] = ACTIONS(4992), + [anon_sym_ATonce] = ACTIONS(4994), + [anon_sym_ATverbatim] = ACTIONS(4996), + [anon_sym_ATpush] = ACTIONS(4998), + [anon_sym_ATpushOnce] = ACTIONS(5000), + [anon_sym_ATpushIf] = ACTIONS(5002), + [anon_sym_ATprepend] = ACTIONS(5004), + [anon_sym_ATprependOnce] = ACTIONS(5006), + [anon_sym_ATif] = ACTIONS(5008), + [anon_sym_ATunless] = ACTIONS(5010), + [anon_sym_ATisset] = ACTIONS(5012), + [anon_sym_ATempty] = ACTIONS(5014), + [anon_sym_ATauth] = ACTIONS(5016), + [anon_sym_ATguest] = ACTIONS(5018), + [anon_sym_ATproduction] = ACTIONS(5020), + [anon_sym_ATenv] = ACTIONS(5022), + [anon_sym_AThasSection] = ACTIONS(5024), + [anon_sym_ATsectionMissing] = ACTIONS(5026), + [anon_sym_ATerror] = ACTIONS(5028), + [aux_sym__custom_token1] = ACTIONS(5030), + [aux_sym__custom_token2] = ACTIONS(5032), + [anon_sym_ATswitch] = ACTIONS(5034), + [aux_sym_loop_operator_token1] = ACTIONS(5036), + [anon_sym_ATfor] = ACTIONS(5038), + [anon_sym_ATforeach] = ACTIONS(5040), + [anon_sym_ATforelse] = ACTIONS(5042), + [anon_sym_ATwhile] = ACTIONS(5044), + [anon_sym_ATendwhile] = ACTIONS(2734), + [anon_sym_ATpersist] = ACTIONS(5046), + [anon_sym_ATteleport] = ACTIONS(5048), + [anon_sym_ATvolt] = ACTIONS(5050), + [aux_sym_text_token1] = ACTIONS(5052), + [aux_sym_text_token2] = ACTIONS(5052), + [aux_sym_text_token3] = ACTIONS(5054), }, [356] = { [sym__definition] = STATE(2152), @@ -49691,47 +50092,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(4941), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(5058), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [357] = { [sym__definition] = STATE(1317), @@ -49783,47 +50184,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(357), [sym_text] = STATE(1437), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(4943), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4946), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4949), - [anon_sym_ATphp] = ACTIONS(4952), - [aux_sym_attribute_token1] = ACTIONS(4955), - [aux_sym__inline_directive_token1] = ACTIONS(4958), - [anon_sym_ATfragment] = ACTIONS(4961), - [anon_sym_ATsection] = ACTIONS(4964), - [anon_sym_ATonce] = ACTIONS(4967), - [anon_sym_ATverbatim] = ACTIONS(4970), - [anon_sym_ATpush] = ACTIONS(4973), - [anon_sym_ATpushOnce] = ACTIONS(4976), - [anon_sym_ATpushIf] = ACTIONS(4979), - [anon_sym_ATprepend] = ACTIONS(4982), - [anon_sym_ATprependOnce] = ACTIONS(4985), - [anon_sym_ATif] = ACTIONS(4988), - [anon_sym_ATunless] = ACTIONS(4991), - [anon_sym_ATisset] = ACTIONS(4994), - [anon_sym_ATempty] = ACTIONS(4997), - [anon_sym_ATauth] = ACTIONS(5000), - [anon_sym_ATguest] = ACTIONS(5003), - [anon_sym_ATproduction] = ACTIONS(5006), - [anon_sym_ATenv] = ACTIONS(5009), - [anon_sym_AThasSection] = ACTIONS(5012), - [anon_sym_ATsectionMissing] = ACTIONS(5015), - [anon_sym_ATerror] = ACTIONS(5018), - [aux_sym__custom_token1] = ACTIONS(5021), - [aux_sym__custom_token2] = ACTIONS(5024), - [anon_sym_ATswitch] = ACTIONS(5027), - [aux_sym_loop_operator_token1] = ACTIONS(5030), - [anon_sym_ATfor] = ACTIONS(5033), - [anon_sym_ATendfor] = ACTIONS(2541), - [anon_sym_ATforeach] = ACTIONS(5036), - [anon_sym_ATforelse] = ACTIONS(5039), - [anon_sym_ATwhile] = ACTIONS(5042), - [anon_sym_ATpersist] = ACTIONS(5045), - [anon_sym_ATteleport] = ACTIONS(5048), - [anon_sym_ATvolt] = ACTIONS(5051), - [aux_sym_text_token1] = ACTIONS(5054), - [aux_sym_text_token2] = ACTIONS(5054), - [aux_sym_text_token3] = ACTIONS(5054), + [aux_sym_keyword_token1] = ACTIONS(5060), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5063), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5066), + [anon_sym_ATphp] = ACTIONS(5069), + [aux_sym_attribute_token1] = ACTIONS(5072), + [aux_sym__inline_directive_token1] = ACTIONS(5075), + [anon_sym_ATfragment] = ACTIONS(5078), + [anon_sym_ATsection] = ACTIONS(5081), + [anon_sym_ATonce] = ACTIONS(5084), + [anon_sym_ATverbatim] = ACTIONS(5087), + [anon_sym_ATpush] = ACTIONS(5090), + [anon_sym_ATpushOnce] = ACTIONS(5093), + [anon_sym_ATpushIf] = ACTIONS(5096), + [anon_sym_ATprepend] = ACTIONS(5099), + [anon_sym_ATprependOnce] = ACTIONS(5102), + [anon_sym_ATif] = ACTIONS(5105), + [anon_sym_ATunless] = ACTIONS(5108), + [anon_sym_ATisset] = ACTIONS(5111), + [anon_sym_ATempty] = ACTIONS(5114), + [anon_sym_ATauth] = ACTIONS(5117), + [anon_sym_ATguest] = ACTIONS(5120), + [anon_sym_ATproduction] = ACTIONS(5123), + [anon_sym_ATenv] = ACTIONS(5126), + [anon_sym_AThasSection] = ACTIONS(5129), + [anon_sym_ATsectionMissing] = ACTIONS(5132), + [anon_sym_ATerror] = ACTIONS(5135), + [aux_sym__custom_token1] = ACTIONS(5138), + [aux_sym__custom_token2] = ACTIONS(5141), + [anon_sym_ATswitch] = ACTIONS(5144), + [aux_sym_loop_operator_token1] = ACTIONS(5147), + [anon_sym_ATfor] = ACTIONS(5150), + [anon_sym_ATendfor] = ACTIONS(2599), + [anon_sym_ATforeach] = ACTIONS(5153), + [anon_sym_ATforelse] = ACTIONS(5156), + [anon_sym_ATwhile] = ACTIONS(5159), + [anon_sym_ATpersist] = ACTIONS(5162), + [anon_sym_ATteleport] = ACTIONS(5165), + [anon_sym_ATvolt] = ACTIONS(5168), + [aux_sym_text_token1] = ACTIONS(5171), + [aux_sym_text_token2] = ACTIONS(5171), + [aux_sym_text_token3] = ACTIONS(5174), }, [358] = { [sym__definition] = STATE(2111), @@ -49875,47 +50276,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(5057), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(5177), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [359] = { [sym__definition] = STATE(2152), @@ -49967,47 +50368,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(5059), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(5179), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [360] = { [sym__definition] = STATE(2111), @@ -50059,47 +50460,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(363), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(5061), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(5181), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [361] = { [sym__definition] = STATE(1202), @@ -50151,47 +50552,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(340), [sym_text] = STATE(1555), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(5063), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5065), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5067), - [anon_sym_ATphp] = ACTIONS(5069), - [aux_sym_attribute_token1] = ACTIONS(5071), - [aux_sym__inline_directive_token1] = ACTIONS(5073), - [anon_sym_ATfragment] = ACTIONS(5075), - [anon_sym_ATsection] = ACTIONS(5077), - [anon_sym_ATonce] = ACTIONS(5079), - [anon_sym_ATverbatim] = ACTIONS(5081), - [anon_sym_ATpush] = ACTIONS(5083), - [anon_sym_ATpushOnce] = ACTIONS(5085), - [anon_sym_ATpushIf] = ACTIONS(5087), - [anon_sym_ATprepend] = ACTIONS(5089), - [anon_sym_ATprependOnce] = ACTIONS(5091), - [anon_sym_ATif] = ACTIONS(5093), - [anon_sym_ATunless] = ACTIONS(5095), - [anon_sym_ATisset] = ACTIONS(5097), - [anon_sym_ATempty] = ACTIONS(5099), - [anon_sym_ATauth] = ACTIONS(5101), - [anon_sym_ATguest] = ACTIONS(5103), - [anon_sym_ATproduction] = ACTIONS(5105), - [anon_sym_ATenv] = ACTIONS(5107), - [anon_sym_AThasSection] = ACTIONS(5109), - [anon_sym_ATsectionMissing] = ACTIONS(5111), - [anon_sym_ATerror] = ACTIONS(5113), - [aux_sym__custom_token1] = ACTIONS(5115), - [aux_sym__custom_token2] = ACTIONS(5117), - [anon_sym_ATswitch] = ACTIONS(5119), - [aux_sym_loop_operator_token1] = ACTIONS(5121), - [anon_sym_ATfor] = ACTIONS(5123), - [anon_sym_ATforeach] = ACTIONS(5125), - [anon_sym_ATforelse] = ACTIONS(5127), - [anon_sym_ATendforelse] = ACTIONS(2567), - [anon_sym_ATwhile] = ACTIONS(5129), - [anon_sym_ATpersist] = ACTIONS(5131), - [anon_sym_ATteleport] = ACTIONS(5133), - [anon_sym_ATvolt] = ACTIONS(5135), - [aux_sym_text_token1] = ACTIONS(5137), - [aux_sym_text_token2] = ACTIONS(5137), - [aux_sym_text_token3] = ACTIONS(5137), + [aux_sym_keyword_token1] = ACTIONS(5183), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5185), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5187), + [anon_sym_ATphp] = ACTIONS(5189), + [aux_sym_attribute_token1] = ACTIONS(5191), + [aux_sym__inline_directive_token1] = ACTIONS(5193), + [anon_sym_ATfragment] = ACTIONS(5195), + [anon_sym_ATsection] = ACTIONS(5197), + [anon_sym_ATonce] = ACTIONS(5199), + [anon_sym_ATverbatim] = ACTIONS(5201), + [anon_sym_ATpush] = ACTIONS(5203), + [anon_sym_ATpushOnce] = ACTIONS(5205), + [anon_sym_ATpushIf] = ACTIONS(5207), + [anon_sym_ATprepend] = ACTIONS(5209), + [anon_sym_ATprependOnce] = ACTIONS(5211), + [anon_sym_ATif] = ACTIONS(5213), + [anon_sym_ATunless] = ACTIONS(5215), + [anon_sym_ATisset] = ACTIONS(5217), + [anon_sym_ATempty] = ACTIONS(5219), + [anon_sym_ATauth] = ACTIONS(5221), + [anon_sym_ATguest] = ACTIONS(5223), + [anon_sym_ATproduction] = ACTIONS(5225), + [anon_sym_ATenv] = ACTIONS(5227), + [anon_sym_AThasSection] = ACTIONS(5229), + [anon_sym_ATsectionMissing] = ACTIONS(5231), + [anon_sym_ATerror] = ACTIONS(5233), + [aux_sym__custom_token1] = ACTIONS(5235), + [aux_sym__custom_token2] = ACTIONS(5237), + [anon_sym_ATswitch] = ACTIONS(5239), + [aux_sym_loop_operator_token1] = ACTIONS(5241), + [anon_sym_ATfor] = ACTIONS(5243), + [anon_sym_ATforeach] = ACTIONS(5245), + [anon_sym_ATforelse] = ACTIONS(5247), + [anon_sym_ATendforelse] = ACTIONS(2628), + [anon_sym_ATwhile] = ACTIONS(5249), + [anon_sym_ATpersist] = ACTIONS(5251), + [anon_sym_ATteleport] = ACTIONS(5253), + [anon_sym_ATvolt] = ACTIONS(5255), + [aux_sym_text_token1] = ACTIONS(5257), + [aux_sym_text_token2] = ACTIONS(5257), + [aux_sym_text_token3] = ACTIONS(5259), }, [362] = { [sym__definition] = STATE(2061), @@ -50243,47 +50644,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(330), [sym_text] = STATE(1325), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(4667), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4669), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4671), - [anon_sym_ATphp] = ACTIONS(4673), - [aux_sym_attribute_token1] = ACTIONS(4675), - [aux_sym__inline_directive_token1] = ACTIONS(4677), - [anon_sym_ATfragment] = ACTIONS(4679), - [anon_sym_ATsection] = ACTIONS(4681), - [anon_sym_ATonce] = ACTIONS(4683), - [anon_sym_ATverbatim] = ACTIONS(4685), - [anon_sym_ATpush] = ACTIONS(4687), - [anon_sym_ATpushOnce] = ACTIONS(4689), - [anon_sym_ATendPushOnce] = ACTIONS(2567), - [anon_sym_ATpushIf] = ACTIONS(4691), - [anon_sym_ATprepend] = ACTIONS(4693), - [anon_sym_ATprependOnce] = ACTIONS(4695), - [anon_sym_ATif] = ACTIONS(4697), - [anon_sym_ATunless] = ACTIONS(4699), - [anon_sym_ATisset] = ACTIONS(4701), - [anon_sym_ATempty] = ACTIONS(4703), - [anon_sym_ATauth] = ACTIONS(4705), - [anon_sym_ATguest] = ACTIONS(4707), - [anon_sym_ATproduction] = ACTIONS(4709), - [anon_sym_ATenv] = ACTIONS(4711), - [anon_sym_AThasSection] = ACTIONS(4713), - [anon_sym_ATsectionMissing] = ACTIONS(4715), - [anon_sym_ATerror] = ACTIONS(4717), - [aux_sym__custom_token1] = ACTIONS(4719), - [aux_sym__custom_token2] = ACTIONS(4721), - [anon_sym_ATswitch] = ACTIONS(4723), - [aux_sym_loop_operator_token1] = ACTIONS(4725), - [anon_sym_ATfor] = ACTIONS(4727), - [anon_sym_ATforeach] = ACTIONS(4729), - [anon_sym_ATforelse] = ACTIONS(4731), - [anon_sym_ATwhile] = ACTIONS(4733), - [anon_sym_ATpersist] = ACTIONS(4735), - [anon_sym_ATteleport] = ACTIONS(4737), - [anon_sym_ATvolt] = ACTIONS(4739), - [aux_sym_text_token1] = ACTIONS(4741), - [aux_sym_text_token2] = ACTIONS(4741), - [aux_sym_text_token3] = ACTIONS(4741), + [aux_sym_keyword_token1] = ACTIONS(4777), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4779), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4781), + [anon_sym_ATphp] = ACTIONS(4783), + [aux_sym_attribute_token1] = ACTIONS(4785), + [aux_sym__inline_directive_token1] = ACTIONS(4787), + [anon_sym_ATfragment] = ACTIONS(4789), + [anon_sym_ATsection] = ACTIONS(4791), + [anon_sym_ATonce] = ACTIONS(4793), + [anon_sym_ATverbatim] = ACTIONS(4795), + [anon_sym_ATpush] = ACTIONS(4797), + [anon_sym_ATpushOnce] = ACTIONS(4799), + [anon_sym_ATendPushOnce] = ACTIONS(2628), + [anon_sym_ATpushIf] = ACTIONS(4801), + [anon_sym_ATprepend] = ACTIONS(4803), + [anon_sym_ATprependOnce] = ACTIONS(4805), + [anon_sym_ATif] = ACTIONS(4807), + [anon_sym_ATunless] = ACTIONS(4809), + [anon_sym_ATisset] = ACTIONS(4811), + [anon_sym_ATempty] = ACTIONS(4813), + [anon_sym_ATauth] = ACTIONS(4815), + [anon_sym_ATguest] = ACTIONS(4817), + [anon_sym_ATproduction] = ACTIONS(4819), + [anon_sym_ATenv] = ACTIONS(4821), + [anon_sym_AThasSection] = ACTIONS(4823), + [anon_sym_ATsectionMissing] = ACTIONS(4825), + [anon_sym_ATerror] = ACTIONS(4827), + [aux_sym__custom_token1] = ACTIONS(4829), + [aux_sym__custom_token2] = ACTIONS(4831), + [anon_sym_ATswitch] = ACTIONS(4833), + [aux_sym_loop_operator_token1] = ACTIONS(4835), + [anon_sym_ATfor] = ACTIONS(4837), + [anon_sym_ATforeach] = ACTIONS(4839), + [anon_sym_ATforelse] = ACTIONS(4841), + [anon_sym_ATwhile] = ACTIONS(4843), + [anon_sym_ATpersist] = ACTIONS(4845), + [anon_sym_ATteleport] = ACTIONS(4847), + [anon_sym_ATvolt] = ACTIONS(4849), + [aux_sym_text_token1] = ACTIONS(4851), + [aux_sym_text_token2] = ACTIONS(4851), + [aux_sym_text_token3] = ACTIONS(4853), }, [363] = { [sym__definition] = STATE(2111), @@ -50335,47 +50736,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(5139), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(5261), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [364] = { [sym__definition] = STATE(1202), @@ -50427,47 +50828,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(361), [sym_text] = STATE(1555), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(5063), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5065), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5067), - [anon_sym_ATphp] = ACTIONS(5069), - [aux_sym_attribute_token1] = ACTIONS(5071), - [aux_sym__inline_directive_token1] = ACTIONS(5073), - [anon_sym_ATfragment] = ACTIONS(5075), - [anon_sym_ATsection] = ACTIONS(5077), - [anon_sym_ATonce] = ACTIONS(5079), - [anon_sym_ATverbatim] = ACTIONS(5081), - [anon_sym_ATpush] = ACTIONS(5083), - [anon_sym_ATpushOnce] = ACTIONS(5085), - [anon_sym_ATpushIf] = ACTIONS(5087), - [anon_sym_ATprepend] = ACTIONS(5089), - [anon_sym_ATprependOnce] = ACTIONS(5091), - [anon_sym_ATif] = ACTIONS(5093), - [anon_sym_ATunless] = ACTIONS(5095), - [anon_sym_ATisset] = ACTIONS(5097), - [anon_sym_ATempty] = ACTIONS(5099), - [anon_sym_ATauth] = ACTIONS(5101), - [anon_sym_ATguest] = ACTIONS(5103), - [anon_sym_ATproduction] = ACTIONS(5105), - [anon_sym_ATenv] = ACTIONS(5107), - [anon_sym_AThasSection] = ACTIONS(5109), - [anon_sym_ATsectionMissing] = ACTIONS(5111), - [anon_sym_ATerror] = ACTIONS(5113), - [aux_sym__custom_token1] = ACTIONS(5115), - [aux_sym__custom_token2] = ACTIONS(5117), - [anon_sym_ATswitch] = ACTIONS(5119), - [aux_sym_loop_operator_token1] = ACTIONS(5121), - [anon_sym_ATfor] = ACTIONS(5123), - [anon_sym_ATforeach] = ACTIONS(5125), - [anon_sym_ATforelse] = ACTIONS(5127), - [anon_sym_ATendforelse] = ACTIONS(2671), - [anon_sym_ATwhile] = ACTIONS(5129), - [anon_sym_ATpersist] = ACTIONS(5131), - [anon_sym_ATteleport] = ACTIONS(5133), - [anon_sym_ATvolt] = ACTIONS(5135), - [aux_sym_text_token1] = ACTIONS(5137), - [aux_sym_text_token2] = ACTIONS(5137), - [aux_sym_text_token3] = ACTIONS(5137), + [aux_sym_keyword_token1] = ACTIONS(5183), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5185), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5187), + [anon_sym_ATphp] = ACTIONS(5189), + [aux_sym_attribute_token1] = ACTIONS(5191), + [aux_sym__inline_directive_token1] = ACTIONS(5193), + [anon_sym_ATfragment] = ACTIONS(5195), + [anon_sym_ATsection] = ACTIONS(5197), + [anon_sym_ATonce] = ACTIONS(5199), + [anon_sym_ATverbatim] = ACTIONS(5201), + [anon_sym_ATpush] = ACTIONS(5203), + [anon_sym_ATpushOnce] = ACTIONS(5205), + [anon_sym_ATpushIf] = ACTIONS(5207), + [anon_sym_ATprepend] = ACTIONS(5209), + [anon_sym_ATprependOnce] = ACTIONS(5211), + [anon_sym_ATif] = ACTIONS(5213), + [anon_sym_ATunless] = ACTIONS(5215), + [anon_sym_ATisset] = ACTIONS(5217), + [anon_sym_ATempty] = ACTIONS(5219), + [anon_sym_ATauth] = ACTIONS(5221), + [anon_sym_ATguest] = ACTIONS(5223), + [anon_sym_ATproduction] = ACTIONS(5225), + [anon_sym_ATenv] = ACTIONS(5227), + [anon_sym_AThasSection] = ACTIONS(5229), + [anon_sym_ATsectionMissing] = ACTIONS(5231), + [anon_sym_ATerror] = ACTIONS(5233), + [aux_sym__custom_token1] = ACTIONS(5235), + [aux_sym__custom_token2] = ACTIONS(5237), + [anon_sym_ATswitch] = ACTIONS(5239), + [aux_sym_loop_operator_token1] = ACTIONS(5241), + [anon_sym_ATfor] = ACTIONS(5243), + [anon_sym_ATforeach] = ACTIONS(5245), + [anon_sym_ATforelse] = ACTIONS(5247), + [anon_sym_ATendforelse] = ACTIONS(2734), + [anon_sym_ATwhile] = ACTIONS(5249), + [anon_sym_ATpersist] = ACTIONS(5251), + [anon_sym_ATteleport] = ACTIONS(5253), + [anon_sym_ATvolt] = ACTIONS(5255), + [aux_sym_text_token1] = ACTIONS(5257), + [aux_sym_text_token2] = ACTIONS(5257), + [aux_sym_text_token3] = ACTIONS(5259), }, [365] = { [sym__definition] = STATE(2077), @@ -50519,47 +50920,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(365), [sym_text] = STATE(1662), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(5141), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5144), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5147), - [anon_sym_ATphp] = ACTIONS(5150), - [aux_sym_attribute_token1] = ACTIONS(5153), - [aux_sym__inline_directive_token1] = ACTIONS(5156), - [anon_sym_ATfragment] = ACTIONS(5159), - [anon_sym_ATsection] = ACTIONS(5162), - [anon_sym_ATendsection] = ACTIONS(2541), - [anon_sym_ATonce] = ACTIONS(5165), - [anon_sym_ATverbatim] = ACTIONS(5168), - [anon_sym_ATpush] = ACTIONS(5171), - [anon_sym_ATpushOnce] = ACTIONS(5174), - [anon_sym_ATpushIf] = ACTIONS(5177), - [anon_sym_ATprepend] = ACTIONS(5180), - [anon_sym_ATprependOnce] = ACTIONS(5183), - [anon_sym_ATif] = ACTIONS(5186), - [anon_sym_ATunless] = ACTIONS(5189), - [anon_sym_ATisset] = ACTIONS(5192), - [anon_sym_ATempty] = ACTIONS(5195), - [anon_sym_ATauth] = ACTIONS(5198), - [anon_sym_ATguest] = ACTIONS(5201), - [anon_sym_ATproduction] = ACTIONS(5204), - [anon_sym_ATenv] = ACTIONS(5207), - [anon_sym_AThasSection] = ACTIONS(5210), - [anon_sym_ATsectionMissing] = ACTIONS(5213), - [anon_sym_ATerror] = ACTIONS(5216), - [aux_sym__custom_token1] = ACTIONS(5219), - [aux_sym__custom_token2] = ACTIONS(5222), - [anon_sym_ATswitch] = ACTIONS(5225), - [aux_sym_loop_operator_token1] = ACTIONS(5228), - [anon_sym_ATfor] = ACTIONS(5231), - [anon_sym_ATforeach] = ACTIONS(5234), - [anon_sym_ATforelse] = ACTIONS(5237), - [anon_sym_ATwhile] = ACTIONS(5240), - [anon_sym_ATpersist] = ACTIONS(5243), - [anon_sym_ATteleport] = ACTIONS(5246), - [anon_sym_ATvolt] = ACTIONS(5249), - [aux_sym_text_token1] = ACTIONS(5252), - [aux_sym_text_token2] = ACTIONS(5252), - [aux_sym_text_token3] = ACTIONS(5252), + [aux_sym_keyword_token1] = ACTIONS(5263), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5266), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5269), + [anon_sym_ATphp] = ACTIONS(5272), + [aux_sym_attribute_token1] = ACTIONS(5275), + [aux_sym__inline_directive_token1] = ACTIONS(5278), + [anon_sym_ATfragment] = ACTIONS(5281), + [anon_sym_ATsection] = ACTIONS(5284), + [anon_sym_ATendsection] = ACTIONS(2599), + [anon_sym_ATonce] = ACTIONS(5287), + [anon_sym_ATverbatim] = ACTIONS(5290), + [anon_sym_ATpush] = ACTIONS(5293), + [anon_sym_ATpushOnce] = ACTIONS(5296), + [anon_sym_ATpushIf] = ACTIONS(5299), + [anon_sym_ATprepend] = ACTIONS(5302), + [anon_sym_ATprependOnce] = ACTIONS(5305), + [anon_sym_ATif] = ACTIONS(5308), + [anon_sym_ATunless] = ACTIONS(5311), + [anon_sym_ATisset] = ACTIONS(5314), + [anon_sym_ATempty] = ACTIONS(5317), + [anon_sym_ATauth] = ACTIONS(5320), + [anon_sym_ATguest] = ACTIONS(5323), + [anon_sym_ATproduction] = ACTIONS(5326), + [anon_sym_ATenv] = ACTIONS(5329), + [anon_sym_AThasSection] = ACTIONS(5332), + [anon_sym_ATsectionMissing] = ACTIONS(5335), + [anon_sym_ATerror] = ACTIONS(5338), + [aux_sym__custom_token1] = ACTIONS(5341), + [aux_sym__custom_token2] = ACTIONS(5344), + [anon_sym_ATswitch] = ACTIONS(5347), + [aux_sym_loop_operator_token1] = ACTIONS(5350), + [anon_sym_ATfor] = ACTIONS(5353), + [anon_sym_ATforeach] = ACTIONS(5356), + [anon_sym_ATforelse] = ACTIONS(5359), + [anon_sym_ATwhile] = ACTIONS(5362), + [anon_sym_ATpersist] = ACTIONS(5365), + [anon_sym_ATteleport] = ACTIONS(5368), + [anon_sym_ATvolt] = ACTIONS(5371), + [aux_sym_text_token1] = ACTIONS(5374), + [aux_sym_text_token2] = ACTIONS(5374), + [aux_sym_text_token3] = ACTIONS(5377), }, [366] = { [sym__definition] = STATE(2111), @@ -50611,47 +51012,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(371), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(5139), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(5261), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [367] = { [sym__definition] = STATE(2111), @@ -50703,47 +51104,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(397), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(5255), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(5380), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [368] = { [sym__definition] = STATE(1374), @@ -50795,47 +51196,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(368), [sym_text] = STATE(1153), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(5257), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5260), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5263), - [anon_sym_ATphp] = ACTIONS(5266), - [aux_sym_attribute_token1] = ACTIONS(5269), - [aux_sym__inline_directive_token1] = ACTIONS(5272), - [anon_sym_ATfragment] = ACTIONS(5275), - [anon_sym_ATsection] = ACTIONS(5278), - [anon_sym_ATonce] = ACTIONS(5281), - [anon_sym_ATverbatim] = ACTIONS(5284), - [anon_sym_ATpush] = ACTIONS(5287), - [anon_sym_ATpushOnce] = ACTIONS(5290), - [anon_sym_ATpushIf] = ACTIONS(5293), - [anon_sym_ATprepend] = ACTIONS(5296), - [anon_sym_ATprependOnce] = ACTIONS(5299), - [anon_sym_ATendPrependOnce] = ACTIONS(2541), - [anon_sym_ATif] = ACTIONS(5302), - [anon_sym_ATunless] = ACTIONS(5305), - [anon_sym_ATisset] = ACTIONS(5308), - [anon_sym_ATempty] = ACTIONS(5311), - [anon_sym_ATauth] = ACTIONS(5314), - [anon_sym_ATguest] = ACTIONS(5317), - [anon_sym_ATproduction] = ACTIONS(5320), - [anon_sym_ATenv] = ACTIONS(5323), - [anon_sym_AThasSection] = ACTIONS(5326), - [anon_sym_ATsectionMissing] = ACTIONS(5329), - [anon_sym_ATerror] = ACTIONS(5332), - [aux_sym__custom_token1] = ACTIONS(5335), - [aux_sym__custom_token2] = ACTIONS(5338), - [anon_sym_ATswitch] = ACTIONS(5341), - [aux_sym_loop_operator_token1] = ACTIONS(5344), - [anon_sym_ATfor] = ACTIONS(5347), - [anon_sym_ATforeach] = ACTIONS(5350), - [anon_sym_ATforelse] = ACTIONS(5353), - [anon_sym_ATwhile] = ACTIONS(5356), - [anon_sym_ATpersist] = ACTIONS(5359), - [anon_sym_ATteleport] = ACTIONS(5362), - [anon_sym_ATvolt] = ACTIONS(5365), - [aux_sym_text_token1] = ACTIONS(5368), - [aux_sym_text_token2] = ACTIONS(5368), - [aux_sym_text_token3] = ACTIONS(5368), + [aux_sym_keyword_token1] = ACTIONS(5382), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5385), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5388), + [anon_sym_ATphp] = ACTIONS(5391), + [aux_sym_attribute_token1] = ACTIONS(5394), + [aux_sym__inline_directive_token1] = ACTIONS(5397), + [anon_sym_ATfragment] = ACTIONS(5400), + [anon_sym_ATsection] = ACTIONS(5403), + [anon_sym_ATonce] = ACTIONS(5406), + [anon_sym_ATverbatim] = ACTIONS(5409), + [anon_sym_ATpush] = ACTIONS(5412), + [anon_sym_ATpushOnce] = ACTIONS(5415), + [anon_sym_ATpushIf] = ACTIONS(5418), + [anon_sym_ATprepend] = ACTIONS(5421), + [anon_sym_ATprependOnce] = ACTIONS(5424), + [anon_sym_ATendPrependOnce] = ACTIONS(2599), + [anon_sym_ATif] = ACTIONS(5427), + [anon_sym_ATunless] = ACTIONS(5430), + [anon_sym_ATisset] = ACTIONS(5433), + [anon_sym_ATempty] = ACTIONS(5436), + [anon_sym_ATauth] = ACTIONS(5439), + [anon_sym_ATguest] = ACTIONS(5442), + [anon_sym_ATproduction] = ACTIONS(5445), + [anon_sym_ATenv] = ACTIONS(5448), + [anon_sym_AThasSection] = ACTIONS(5451), + [anon_sym_ATsectionMissing] = ACTIONS(5454), + [anon_sym_ATerror] = ACTIONS(5457), + [aux_sym__custom_token1] = ACTIONS(5460), + [aux_sym__custom_token2] = ACTIONS(5463), + [anon_sym_ATswitch] = ACTIONS(5466), + [aux_sym_loop_operator_token1] = ACTIONS(5469), + [anon_sym_ATfor] = ACTIONS(5472), + [anon_sym_ATforeach] = ACTIONS(5475), + [anon_sym_ATforelse] = ACTIONS(5478), + [anon_sym_ATwhile] = ACTIONS(5481), + [anon_sym_ATpersist] = ACTIONS(5484), + [anon_sym_ATteleport] = ACTIONS(5487), + [anon_sym_ATvolt] = ACTIONS(5490), + [aux_sym_text_token1] = ACTIONS(5493), + [aux_sym_text_token2] = ACTIONS(5493), + [aux_sym_text_token3] = ACTIONS(5496), }, [369] = { [sym__definition] = STATE(1259), @@ -50887,47 +51288,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(349), [sym_text] = STATE(1496), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(5371), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5373), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5375), - [anon_sym_ATphp] = ACTIONS(5377), - [aux_sym_attribute_token1] = ACTIONS(5379), - [aux_sym__inline_directive_token1] = ACTIONS(5381), - [anon_sym_ATfragment] = ACTIONS(5383), - [anon_sym_ATsection] = ACTIONS(5385), - [anon_sym_ATonce] = ACTIONS(5387), - [anon_sym_ATverbatim] = ACTIONS(5389), - [anon_sym_ATpush] = ACTIONS(5391), - [anon_sym_ATpushOnce] = ACTIONS(5393), - [anon_sym_ATpushIf] = ACTIONS(5395), - [anon_sym_ATprepend] = ACTIONS(5397), - [anon_sym_ATprependOnce] = ACTIONS(5399), - [anon_sym_ATif] = ACTIONS(5401), - [anon_sym_ATunless] = ACTIONS(5403), - [anon_sym_ATisset] = ACTIONS(5405), - [anon_sym_ATempty] = ACTIONS(5407), - [anon_sym_ATauth] = ACTIONS(5409), - [anon_sym_ATguest] = ACTIONS(5411), - [anon_sym_ATproduction] = ACTIONS(5413), - [anon_sym_ATenv] = ACTIONS(5415), - [anon_sym_AThasSection] = ACTIONS(5417), - [anon_sym_ATsectionMissing] = ACTIONS(5419), - [anon_sym_ATerror] = ACTIONS(5421), - [aux_sym__custom_token1] = ACTIONS(5423), - [aux_sym__custom_token2] = ACTIONS(5425), - [anon_sym_ATswitch] = ACTIONS(5427), - [aux_sym_loop_operator_token1] = ACTIONS(5429), - [anon_sym_ATfor] = ACTIONS(5431), - [anon_sym_ATforeach] = ACTIONS(5433), - [anon_sym_ATendforeach] = ACTIONS(2567), - [anon_sym_ATforelse] = ACTIONS(5435), - [anon_sym_ATwhile] = ACTIONS(5437), - [anon_sym_ATpersist] = ACTIONS(5439), - [anon_sym_ATteleport] = ACTIONS(5441), - [anon_sym_ATvolt] = ACTIONS(5443), - [aux_sym_text_token1] = ACTIONS(5445), - [aux_sym_text_token2] = ACTIONS(5445), - [aux_sym_text_token3] = ACTIONS(5445), + [aux_sym_keyword_token1] = ACTIONS(5499), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5501), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5503), + [anon_sym_ATphp] = ACTIONS(5505), + [aux_sym_attribute_token1] = ACTIONS(5507), + [aux_sym__inline_directive_token1] = ACTIONS(5509), + [anon_sym_ATfragment] = ACTIONS(5511), + [anon_sym_ATsection] = ACTIONS(5513), + [anon_sym_ATonce] = ACTIONS(5515), + [anon_sym_ATverbatim] = ACTIONS(5517), + [anon_sym_ATpush] = ACTIONS(5519), + [anon_sym_ATpushOnce] = ACTIONS(5521), + [anon_sym_ATpushIf] = ACTIONS(5523), + [anon_sym_ATprepend] = ACTIONS(5525), + [anon_sym_ATprependOnce] = ACTIONS(5527), + [anon_sym_ATif] = ACTIONS(5529), + [anon_sym_ATunless] = ACTIONS(5531), + [anon_sym_ATisset] = ACTIONS(5533), + [anon_sym_ATempty] = ACTIONS(5535), + [anon_sym_ATauth] = ACTIONS(5537), + [anon_sym_ATguest] = ACTIONS(5539), + [anon_sym_ATproduction] = ACTIONS(5541), + [anon_sym_ATenv] = ACTIONS(5543), + [anon_sym_AThasSection] = ACTIONS(5545), + [anon_sym_ATsectionMissing] = ACTIONS(5547), + [anon_sym_ATerror] = ACTIONS(5549), + [aux_sym__custom_token1] = ACTIONS(5551), + [aux_sym__custom_token2] = ACTIONS(5553), + [anon_sym_ATswitch] = ACTIONS(5555), + [aux_sym_loop_operator_token1] = ACTIONS(5557), + [anon_sym_ATfor] = ACTIONS(5559), + [anon_sym_ATforeach] = ACTIONS(5561), + [anon_sym_ATendforeach] = ACTIONS(2628), + [anon_sym_ATforelse] = ACTIONS(5563), + [anon_sym_ATwhile] = ACTIONS(5565), + [anon_sym_ATpersist] = ACTIONS(5567), + [anon_sym_ATteleport] = ACTIONS(5569), + [anon_sym_ATvolt] = ACTIONS(5571), + [aux_sym_text_token1] = ACTIONS(5573), + [aux_sym_text_token2] = ACTIONS(5573), + [aux_sym_text_token3] = ACTIONS(5575), }, [370] = { [sym__definition] = STATE(2152), @@ -50979,47 +51380,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(307), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(5447), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(5577), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [371] = { [sym__definition] = STATE(2111), @@ -51071,47 +51472,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(5449), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(5579), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [372] = { [sym__definition] = STATE(1374), @@ -51163,47 +51564,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(400), [sym_text] = STATE(1153), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(5451), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5453), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5455), - [anon_sym_ATphp] = ACTIONS(5457), - [aux_sym_attribute_token1] = ACTIONS(5459), - [aux_sym__inline_directive_token1] = ACTIONS(5461), - [anon_sym_ATfragment] = ACTIONS(5463), - [anon_sym_ATsection] = ACTIONS(5465), - [anon_sym_ATonce] = ACTIONS(5467), - [anon_sym_ATverbatim] = ACTIONS(5469), - [anon_sym_ATpush] = ACTIONS(5471), - [anon_sym_ATpushOnce] = ACTIONS(5473), - [anon_sym_ATpushIf] = ACTIONS(5475), - [anon_sym_ATprepend] = ACTIONS(5477), - [anon_sym_ATprependOnce] = ACTIONS(5479), - [anon_sym_ATendPrependOnce] = ACTIONS(2671), - [anon_sym_ATif] = ACTIONS(5481), - [anon_sym_ATunless] = ACTIONS(5483), - [anon_sym_ATisset] = ACTIONS(5485), - [anon_sym_ATempty] = ACTIONS(5487), - [anon_sym_ATauth] = ACTIONS(5489), - [anon_sym_ATguest] = ACTIONS(5491), - [anon_sym_ATproduction] = ACTIONS(5493), - [anon_sym_ATenv] = ACTIONS(5495), - [anon_sym_AThasSection] = ACTIONS(5497), - [anon_sym_ATsectionMissing] = ACTIONS(5499), - [anon_sym_ATerror] = ACTIONS(5501), - [aux_sym__custom_token1] = ACTIONS(5503), - [aux_sym__custom_token2] = ACTIONS(5505), - [anon_sym_ATswitch] = ACTIONS(5507), - [aux_sym_loop_operator_token1] = ACTIONS(5509), - [anon_sym_ATfor] = ACTIONS(5511), - [anon_sym_ATforeach] = ACTIONS(5513), - [anon_sym_ATforelse] = ACTIONS(5515), - [anon_sym_ATwhile] = ACTIONS(5517), - [anon_sym_ATpersist] = ACTIONS(5519), - [anon_sym_ATteleport] = ACTIONS(5521), - [anon_sym_ATvolt] = ACTIONS(5523), - [aux_sym_text_token1] = ACTIONS(5525), - [aux_sym_text_token2] = ACTIONS(5525), - [aux_sym_text_token3] = ACTIONS(5525), + [aux_sym_keyword_token1] = ACTIONS(5581), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5583), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5585), + [anon_sym_ATphp] = ACTIONS(5587), + [aux_sym_attribute_token1] = ACTIONS(5589), + [aux_sym__inline_directive_token1] = ACTIONS(5591), + [anon_sym_ATfragment] = ACTIONS(5593), + [anon_sym_ATsection] = ACTIONS(5595), + [anon_sym_ATonce] = ACTIONS(5597), + [anon_sym_ATverbatim] = ACTIONS(5599), + [anon_sym_ATpush] = ACTIONS(5601), + [anon_sym_ATpushOnce] = ACTIONS(5603), + [anon_sym_ATpushIf] = ACTIONS(5605), + [anon_sym_ATprepend] = ACTIONS(5607), + [anon_sym_ATprependOnce] = ACTIONS(5609), + [anon_sym_ATendPrependOnce] = ACTIONS(2734), + [anon_sym_ATif] = ACTIONS(5611), + [anon_sym_ATunless] = ACTIONS(5613), + [anon_sym_ATisset] = ACTIONS(5615), + [anon_sym_ATempty] = ACTIONS(5617), + [anon_sym_ATauth] = ACTIONS(5619), + [anon_sym_ATguest] = ACTIONS(5621), + [anon_sym_ATproduction] = ACTIONS(5623), + [anon_sym_ATenv] = ACTIONS(5625), + [anon_sym_AThasSection] = ACTIONS(5627), + [anon_sym_ATsectionMissing] = ACTIONS(5629), + [anon_sym_ATerror] = ACTIONS(5631), + [aux_sym__custom_token1] = ACTIONS(5633), + [aux_sym__custom_token2] = ACTIONS(5635), + [anon_sym_ATswitch] = ACTIONS(5637), + [aux_sym_loop_operator_token1] = ACTIONS(5639), + [anon_sym_ATfor] = ACTIONS(5641), + [anon_sym_ATforeach] = ACTIONS(5643), + [anon_sym_ATforelse] = ACTIONS(5645), + [anon_sym_ATwhile] = ACTIONS(5647), + [anon_sym_ATpersist] = ACTIONS(5649), + [anon_sym_ATteleport] = ACTIONS(5651), + [anon_sym_ATvolt] = ACTIONS(5653), + [aux_sym_text_token1] = ACTIONS(5655), + [aux_sym_text_token2] = ACTIONS(5655), + [aux_sym_text_token3] = ACTIONS(5657), }, [373] = { [sym__definition] = STATE(2111), @@ -51255,47 +51656,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(217), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(5527), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(5659), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [374] = { [sym__definition] = STATE(1259), @@ -51347,47 +51748,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(369), [sym_text] = STATE(1496), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(5371), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5373), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5375), - [anon_sym_ATphp] = ACTIONS(5377), - [aux_sym_attribute_token1] = ACTIONS(5379), - [aux_sym__inline_directive_token1] = ACTIONS(5381), - [anon_sym_ATfragment] = ACTIONS(5383), - [anon_sym_ATsection] = ACTIONS(5385), - [anon_sym_ATonce] = ACTIONS(5387), - [anon_sym_ATverbatim] = ACTIONS(5389), - [anon_sym_ATpush] = ACTIONS(5391), - [anon_sym_ATpushOnce] = ACTIONS(5393), - [anon_sym_ATpushIf] = ACTIONS(5395), - [anon_sym_ATprepend] = ACTIONS(5397), - [anon_sym_ATprependOnce] = ACTIONS(5399), - [anon_sym_ATif] = ACTIONS(5401), - [anon_sym_ATunless] = ACTIONS(5403), - [anon_sym_ATisset] = ACTIONS(5405), - [anon_sym_ATempty] = ACTIONS(5407), - [anon_sym_ATauth] = ACTIONS(5409), - [anon_sym_ATguest] = ACTIONS(5411), - [anon_sym_ATproduction] = ACTIONS(5413), - [anon_sym_ATenv] = ACTIONS(5415), - [anon_sym_AThasSection] = ACTIONS(5417), - [anon_sym_ATsectionMissing] = ACTIONS(5419), - [anon_sym_ATerror] = ACTIONS(5421), - [aux_sym__custom_token1] = ACTIONS(5423), - [aux_sym__custom_token2] = ACTIONS(5425), - [anon_sym_ATswitch] = ACTIONS(5427), - [aux_sym_loop_operator_token1] = ACTIONS(5429), - [anon_sym_ATfor] = ACTIONS(5431), - [anon_sym_ATforeach] = ACTIONS(5433), - [anon_sym_ATendforeach] = ACTIONS(2671), - [anon_sym_ATforelse] = ACTIONS(5435), - [anon_sym_ATwhile] = ACTIONS(5437), - [anon_sym_ATpersist] = ACTIONS(5439), - [anon_sym_ATteleport] = ACTIONS(5441), - [anon_sym_ATvolt] = ACTIONS(5443), - [aux_sym_text_token1] = ACTIONS(5445), - [aux_sym_text_token2] = ACTIONS(5445), - [aux_sym_text_token3] = ACTIONS(5445), + [aux_sym_keyword_token1] = ACTIONS(5499), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5501), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5503), + [anon_sym_ATphp] = ACTIONS(5505), + [aux_sym_attribute_token1] = ACTIONS(5507), + [aux_sym__inline_directive_token1] = ACTIONS(5509), + [anon_sym_ATfragment] = ACTIONS(5511), + [anon_sym_ATsection] = ACTIONS(5513), + [anon_sym_ATonce] = ACTIONS(5515), + [anon_sym_ATverbatim] = ACTIONS(5517), + [anon_sym_ATpush] = ACTIONS(5519), + [anon_sym_ATpushOnce] = ACTIONS(5521), + [anon_sym_ATpushIf] = ACTIONS(5523), + [anon_sym_ATprepend] = ACTIONS(5525), + [anon_sym_ATprependOnce] = ACTIONS(5527), + [anon_sym_ATif] = ACTIONS(5529), + [anon_sym_ATunless] = ACTIONS(5531), + [anon_sym_ATisset] = ACTIONS(5533), + [anon_sym_ATempty] = ACTIONS(5535), + [anon_sym_ATauth] = ACTIONS(5537), + [anon_sym_ATguest] = ACTIONS(5539), + [anon_sym_ATproduction] = ACTIONS(5541), + [anon_sym_ATenv] = ACTIONS(5543), + [anon_sym_AThasSection] = ACTIONS(5545), + [anon_sym_ATsectionMissing] = ACTIONS(5547), + [anon_sym_ATerror] = ACTIONS(5549), + [aux_sym__custom_token1] = ACTIONS(5551), + [aux_sym__custom_token2] = ACTIONS(5553), + [anon_sym_ATswitch] = ACTIONS(5555), + [aux_sym_loop_operator_token1] = ACTIONS(5557), + [anon_sym_ATfor] = ACTIONS(5559), + [anon_sym_ATforeach] = ACTIONS(5561), + [anon_sym_ATendforeach] = ACTIONS(2734), + [anon_sym_ATforelse] = ACTIONS(5563), + [anon_sym_ATwhile] = ACTIONS(5565), + [anon_sym_ATpersist] = ACTIONS(5567), + [anon_sym_ATteleport] = ACTIONS(5569), + [anon_sym_ATvolt] = ACTIONS(5571), + [aux_sym_text_token1] = ACTIONS(5573), + [aux_sym_text_token2] = ACTIONS(5573), + [aux_sym_text_token3] = ACTIONS(5575), }, [375] = { [sym__definition] = STATE(2012), @@ -51439,47 +51840,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(388), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(5529), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(5661), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [376] = { [sym__definition] = STATE(2111), @@ -51531,47 +51932,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(5255), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(5380), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [377] = { [sym__definition] = STATE(1546), @@ -51623,47 +52024,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(377), [sym_text] = STATE(1211), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(5531), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5534), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5537), - [anon_sym_ATphp] = ACTIONS(5540), - [aux_sym_attribute_token1] = ACTIONS(5543), - [aux_sym__inline_directive_token1] = ACTIONS(5546), - [anon_sym_ATfragment] = ACTIONS(5549), - [anon_sym_ATsection] = ACTIONS(5552), - [anon_sym_ATonce] = ACTIONS(5555), - [anon_sym_ATverbatim] = ACTIONS(5558), - [anon_sym_ATpush] = ACTIONS(5561), - [anon_sym_ATpushOnce] = ACTIONS(5564), - [anon_sym_ATpushIf] = ACTIONS(5567), - [anon_sym_ATprepend] = ACTIONS(5570), - [anon_sym_ATendprepend] = ACTIONS(2541), - [anon_sym_ATprependOnce] = ACTIONS(5573), - [anon_sym_ATif] = ACTIONS(5576), - [anon_sym_ATunless] = ACTIONS(5579), - [anon_sym_ATisset] = ACTIONS(5582), - [anon_sym_ATempty] = ACTIONS(5585), - [anon_sym_ATauth] = ACTIONS(5588), - [anon_sym_ATguest] = ACTIONS(5591), - [anon_sym_ATproduction] = ACTIONS(5594), - [anon_sym_ATenv] = ACTIONS(5597), - [anon_sym_AThasSection] = ACTIONS(5600), - [anon_sym_ATsectionMissing] = ACTIONS(5603), - [anon_sym_ATerror] = ACTIONS(5606), - [aux_sym__custom_token1] = ACTIONS(5609), - [aux_sym__custom_token2] = ACTIONS(5612), - [anon_sym_ATswitch] = ACTIONS(5615), - [aux_sym_loop_operator_token1] = ACTIONS(5618), - [anon_sym_ATfor] = ACTIONS(5621), - [anon_sym_ATforeach] = ACTIONS(5624), - [anon_sym_ATforelse] = ACTIONS(5627), - [anon_sym_ATwhile] = ACTIONS(5630), - [anon_sym_ATpersist] = ACTIONS(5633), - [anon_sym_ATteleport] = ACTIONS(5636), - [anon_sym_ATvolt] = ACTIONS(5639), - [aux_sym_text_token1] = ACTIONS(5642), - [aux_sym_text_token2] = ACTIONS(5642), - [aux_sym_text_token3] = ACTIONS(5642), + [aux_sym_keyword_token1] = ACTIONS(5663), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5666), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5669), + [anon_sym_ATphp] = ACTIONS(5672), + [aux_sym_attribute_token1] = ACTIONS(5675), + [aux_sym__inline_directive_token1] = ACTIONS(5678), + [anon_sym_ATfragment] = ACTIONS(5681), + [anon_sym_ATsection] = ACTIONS(5684), + [anon_sym_ATonce] = ACTIONS(5687), + [anon_sym_ATverbatim] = ACTIONS(5690), + [anon_sym_ATpush] = ACTIONS(5693), + [anon_sym_ATpushOnce] = ACTIONS(5696), + [anon_sym_ATpushIf] = ACTIONS(5699), + [anon_sym_ATprepend] = ACTIONS(5702), + [anon_sym_ATendprepend] = ACTIONS(2599), + [anon_sym_ATprependOnce] = ACTIONS(5705), + [anon_sym_ATif] = ACTIONS(5708), + [anon_sym_ATunless] = ACTIONS(5711), + [anon_sym_ATisset] = ACTIONS(5714), + [anon_sym_ATempty] = ACTIONS(5717), + [anon_sym_ATauth] = ACTIONS(5720), + [anon_sym_ATguest] = ACTIONS(5723), + [anon_sym_ATproduction] = ACTIONS(5726), + [anon_sym_ATenv] = ACTIONS(5729), + [anon_sym_AThasSection] = ACTIONS(5732), + [anon_sym_ATsectionMissing] = ACTIONS(5735), + [anon_sym_ATerror] = ACTIONS(5738), + [aux_sym__custom_token1] = ACTIONS(5741), + [aux_sym__custom_token2] = ACTIONS(5744), + [anon_sym_ATswitch] = ACTIONS(5747), + [aux_sym_loop_operator_token1] = ACTIONS(5750), + [anon_sym_ATfor] = ACTIONS(5753), + [anon_sym_ATforeach] = ACTIONS(5756), + [anon_sym_ATforelse] = ACTIONS(5759), + [anon_sym_ATwhile] = ACTIONS(5762), + [anon_sym_ATpersist] = ACTIONS(5765), + [anon_sym_ATteleport] = ACTIONS(5768), + [anon_sym_ATvolt] = ACTIONS(5771), + [aux_sym_text_token1] = ACTIONS(5774), + [aux_sym_text_token2] = ACTIONS(5774), + [aux_sym_text_token3] = ACTIONS(5777), }, [378] = { [sym__definition] = STATE(1317), @@ -51715,47 +52116,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(357), [sym_text] = STATE(1437), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(5645), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5647), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5649), - [anon_sym_ATphp] = ACTIONS(5651), - [aux_sym_attribute_token1] = ACTIONS(5653), - [aux_sym__inline_directive_token1] = ACTIONS(5655), - [anon_sym_ATfragment] = ACTIONS(5657), - [anon_sym_ATsection] = ACTIONS(5659), - [anon_sym_ATonce] = ACTIONS(5661), - [anon_sym_ATverbatim] = ACTIONS(5663), - [anon_sym_ATpush] = ACTIONS(5665), - [anon_sym_ATpushOnce] = ACTIONS(5667), - [anon_sym_ATpushIf] = ACTIONS(5669), - [anon_sym_ATprepend] = ACTIONS(5671), - [anon_sym_ATprependOnce] = ACTIONS(5673), - [anon_sym_ATif] = ACTIONS(5675), - [anon_sym_ATunless] = ACTIONS(5677), - [anon_sym_ATisset] = ACTIONS(5679), - [anon_sym_ATempty] = ACTIONS(5681), - [anon_sym_ATauth] = ACTIONS(5683), - [anon_sym_ATguest] = ACTIONS(5685), - [anon_sym_ATproduction] = ACTIONS(5687), - [anon_sym_ATenv] = ACTIONS(5689), - [anon_sym_AThasSection] = ACTIONS(5691), - [anon_sym_ATsectionMissing] = ACTIONS(5693), - [anon_sym_ATerror] = ACTIONS(5695), - [aux_sym__custom_token1] = ACTIONS(5697), - [aux_sym__custom_token2] = ACTIONS(5699), - [anon_sym_ATswitch] = ACTIONS(5701), - [aux_sym_loop_operator_token1] = ACTIONS(5703), - [anon_sym_ATfor] = ACTIONS(5705), - [anon_sym_ATendfor] = ACTIONS(2567), - [anon_sym_ATforeach] = ACTIONS(5707), - [anon_sym_ATforelse] = ACTIONS(5709), - [anon_sym_ATwhile] = ACTIONS(5711), - [anon_sym_ATpersist] = ACTIONS(5713), - [anon_sym_ATteleport] = ACTIONS(5715), - [anon_sym_ATvolt] = ACTIONS(5717), - [aux_sym_text_token1] = ACTIONS(5719), - [aux_sym_text_token2] = ACTIONS(5719), - [aux_sym_text_token3] = ACTIONS(5719), + [aux_sym_keyword_token1] = ACTIONS(5780), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5782), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5784), + [anon_sym_ATphp] = ACTIONS(5786), + [aux_sym_attribute_token1] = ACTIONS(5788), + [aux_sym__inline_directive_token1] = ACTIONS(5790), + [anon_sym_ATfragment] = ACTIONS(5792), + [anon_sym_ATsection] = ACTIONS(5794), + [anon_sym_ATonce] = ACTIONS(5796), + [anon_sym_ATverbatim] = ACTIONS(5798), + [anon_sym_ATpush] = ACTIONS(5800), + [anon_sym_ATpushOnce] = ACTIONS(5802), + [anon_sym_ATpushIf] = ACTIONS(5804), + [anon_sym_ATprepend] = ACTIONS(5806), + [anon_sym_ATprependOnce] = ACTIONS(5808), + [anon_sym_ATif] = ACTIONS(5810), + [anon_sym_ATunless] = ACTIONS(5812), + [anon_sym_ATisset] = ACTIONS(5814), + [anon_sym_ATempty] = ACTIONS(5816), + [anon_sym_ATauth] = ACTIONS(5818), + [anon_sym_ATguest] = ACTIONS(5820), + [anon_sym_ATproduction] = ACTIONS(5822), + [anon_sym_ATenv] = ACTIONS(5824), + [anon_sym_AThasSection] = ACTIONS(5826), + [anon_sym_ATsectionMissing] = ACTIONS(5828), + [anon_sym_ATerror] = ACTIONS(5830), + [aux_sym__custom_token1] = ACTIONS(5832), + [aux_sym__custom_token2] = ACTIONS(5834), + [anon_sym_ATswitch] = ACTIONS(5836), + [aux_sym_loop_operator_token1] = ACTIONS(5838), + [anon_sym_ATfor] = ACTIONS(5840), + [anon_sym_ATendfor] = ACTIONS(2628), + [anon_sym_ATforeach] = ACTIONS(5842), + [anon_sym_ATforelse] = ACTIONS(5844), + [anon_sym_ATwhile] = ACTIONS(5846), + [anon_sym_ATpersist] = ACTIONS(5848), + [anon_sym_ATteleport] = ACTIONS(5850), + [anon_sym_ATvolt] = ACTIONS(5852), + [aux_sym_text_token1] = ACTIONS(5854), + [aux_sym_text_token2] = ACTIONS(5854), + [aux_sym_text_token3] = ACTIONS(5856), }, [379] = { [sym__definition] = STATE(2152), @@ -51807,47 +52208,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(5721), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(5858), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [380] = { [sym__definition] = STATE(2152), @@ -51899,47 +52300,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(389), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(5723), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(5860), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [381] = { [sym__definition] = STATE(2152), @@ -51991,47 +52392,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(5725), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(5862), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [382] = { [sym__definition] = STATE(2012), @@ -52083,47 +52484,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(329), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(5727), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(5864), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [383] = { [sym__definition] = STATE(2111), @@ -52175,47 +52576,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(410), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(5057), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(5177), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [384] = { [sym__definition] = STATE(1317), @@ -52267,47 +52668,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(378), [sym_text] = STATE(1437), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(5645), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5647), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5649), - [anon_sym_ATphp] = ACTIONS(5651), - [aux_sym_attribute_token1] = ACTIONS(5653), - [aux_sym__inline_directive_token1] = ACTIONS(5655), - [anon_sym_ATfragment] = ACTIONS(5657), - [anon_sym_ATsection] = ACTIONS(5659), - [anon_sym_ATonce] = ACTIONS(5661), - [anon_sym_ATverbatim] = ACTIONS(5663), - [anon_sym_ATpush] = ACTIONS(5665), - [anon_sym_ATpushOnce] = ACTIONS(5667), - [anon_sym_ATpushIf] = ACTIONS(5669), - [anon_sym_ATprepend] = ACTIONS(5671), - [anon_sym_ATprependOnce] = ACTIONS(5673), - [anon_sym_ATif] = ACTIONS(5675), - [anon_sym_ATunless] = ACTIONS(5677), - [anon_sym_ATisset] = ACTIONS(5679), - [anon_sym_ATempty] = ACTIONS(5681), - [anon_sym_ATauth] = ACTIONS(5683), - [anon_sym_ATguest] = ACTIONS(5685), - [anon_sym_ATproduction] = ACTIONS(5687), - [anon_sym_ATenv] = ACTIONS(5689), - [anon_sym_AThasSection] = ACTIONS(5691), - [anon_sym_ATsectionMissing] = ACTIONS(5693), - [anon_sym_ATerror] = ACTIONS(5695), - [aux_sym__custom_token1] = ACTIONS(5697), - [aux_sym__custom_token2] = ACTIONS(5699), - [anon_sym_ATswitch] = ACTIONS(5701), - [aux_sym_loop_operator_token1] = ACTIONS(5703), - [anon_sym_ATfor] = ACTIONS(5705), - [anon_sym_ATendfor] = ACTIONS(2671), - [anon_sym_ATforeach] = ACTIONS(5707), - [anon_sym_ATforelse] = ACTIONS(5709), - [anon_sym_ATwhile] = ACTIONS(5711), - [anon_sym_ATpersist] = ACTIONS(5713), - [anon_sym_ATteleport] = ACTIONS(5715), - [anon_sym_ATvolt] = ACTIONS(5717), - [aux_sym_text_token1] = ACTIONS(5719), - [aux_sym_text_token2] = ACTIONS(5719), - [aux_sym_text_token3] = ACTIONS(5719), + [aux_sym_keyword_token1] = ACTIONS(5780), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5782), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5784), + [anon_sym_ATphp] = ACTIONS(5786), + [aux_sym_attribute_token1] = ACTIONS(5788), + [aux_sym__inline_directive_token1] = ACTIONS(5790), + [anon_sym_ATfragment] = ACTIONS(5792), + [anon_sym_ATsection] = ACTIONS(5794), + [anon_sym_ATonce] = ACTIONS(5796), + [anon_sym_ATverbatim] = ACTIONS(5798), + [anon_sym_ATpush] = ACTIONS(5800), + [anon_sym_ATpushOnce] = ACTIONS(5802), + [anon_sym_ATpushIf] = ACTIONS(5804), + [anon_sym_ATprepend] = ACTIONS(5806), + [anon_sym_ATprependOnce] = ACTIONS(5808), + [anon_sym_ATif] = ACTIONS(5810), + [anon_sym_ATunless] = ACTIONS(5812), + [anon_sym_ATisset] = ACTIONS(5814), + [anon_sym_ATempty] = ACTIONS(5816), + [anon_sym_ATauth] = ACTIONS(5818), + [anon_sym_ATguest] = ACTIONS(5820), + [anon_sym_ATproduction] = ACTIONS(5822), + [anon_sym_ATenv] = ACTIONS(5824), + [anon_sym_AThasSection] = ACTIONS(5826), + [anon_sym_ATsectionMissing] = ACTIONS(5828), + [anon_sym_ATerror] = ACTIONS(5830), + [aux_sym__custom_token1] = ACTIONS(5832), + [aux_sym__custom_token2] = ACTIONS(5834), + [anon_sym_ATswitch] = ACTIONS(5836), + [aux_sym_loop_operator_token1] = ACTIONS(5838), + [anon_sym_ATfor] = ACTIONS(5840), + [anon_sym_ATendfor] = ACTIONS(2734), + [anon_sym_ATforeach] = ACTIONS(5842), + [anon_sym_ATforelse] = ACTIONS(5844), + [anon_sym_ATwhile] = ACTIONS(5846), + [anon_sym_ATpersist] = ACTIONS(5848), + [anon_sym_ATteleport] = ACTIONS(5850), + [anon_sym_ATvolt] = ACTIONS(5852), + [aux_sym_text_token1] = ACTIONS(5854), + [aux_sym_text_token2] = ACTIONS(5854), + [aux_sym_text_token3] = ACTIONS(5856), }, [385] = { [sym__definition] = STATE(2012), @@ -52359,47 +52760,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(5729), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(5866), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [386] = { [sym__definition] = STATE(2152), @@ -52451,47 +52852,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(381), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(5731), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(5868), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [387] = { [sym__definition] = STATE(2012), @@ -52543,47 +52944,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(385), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(5733), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(5870), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [388] = { [sym__definition] = STATE(2012), @@ -52635,47 +53036,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(5735), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(5872), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [389] = { [sym__definition] = STATE(2152), @@ -52727,47 +53128,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(5737), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(5874), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [390] = { [sym__definition] = STATE(2071), @@ -52819,47 +53220,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(390), [sym_text] = STATE(1382), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(5739), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5742), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5745), - [anon_sym_ATphp] = ACTIONS(5748), - [aux_sym_attribute_token1] = ACTIONS(5751), - [aux_sym__inline_directive_token1] = ACTIONS(5754), - [anon_sym_ATfragment] = ACTIONS(5757), - [anon_sym_ATsection] = ACTIONS(5760), - [anon_sym_ATonce] = ACTIONS(5763), - [anon_sym_ATverbatim] = ACTIONS(5766), - [anon_sym_ATpush] = ACTIONS(5769), - [anon_sym_ATendpush] = ACTIONS(2541), - [anon_sym_ATpushOnce] = ACTIONS(5772), - [anon_sym_ATpushIf] = ACTIONS(5775), - [anon_sym_ATprepend] = ACTIONS(5778), - [anon_sym_ATprependOnce] = ACTIONS(5781), - [anon_sym_ATif] = ACTIONS(5784), - [anon_sym_ATunless] = ACTIONS(5787), - [anon_sym_ATisset] = ACTIONS(5790), - [anon_sym_ATempty] = ACTIONS(5793), - [anon_sym_ATauth] = ACTIONS(5796), - [anon_sym_ATguest] = ACTIONS(5799), - [anon_sym_ATproduction] = ACTIONS(5802), - [anon_sym_ATenv] = ACTIONS(5805), - [anon_sym_AThasSection] = ACTIONS(5808), - [anon_sym_ATsectionMissing] = ACTIONS(5811), - [anon_sym_ATerror] = ACTIONS(5814), - [aux_sym__custom_token1] = ACTIONS(5817), - [aux_sym__custom_token2] = ACTIONS(5820), - [anon_sym_ATswitch] = ACTIONS(5823), - [aux_sym_loop_operator_token1] = ACTIONS(5826), - [anon_sym_ATfor] = ACTIONS(5829), - [anon_sym_ATforeach] = ACTIONS(5832), - [anon_sym_ATforelse] = ACTIONS(5835), - [anon_sym_ATwhile] = ACTIONS(5838), - [anon_sym_ATpersist] = ACTIONS(5841), - [anon_sym_ATteleport] = ACTIONS(5844), - [anon_sym_ATvolt] = ACTIONS(5847), - [aux_sym_text_token1] = ACTIONS(5850), - [aux_sym_text_token2] = ACTIONS(5850), - [aux_sym_text_token3] = ACTIONS(5850), + [aux_sym_keyword_token1] = ACTIONS(5876), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5879), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5882), + [anon_sym_ATphp] = ACTIONS(5885), + [aux_sym_attribute_token1] = ACTIONS(5888), + [aux_sym__inline_directive_token1] = ACTIONS(5891), + [anon_sym_ATfragment] = ACTIONS(5894), + [anon_sym_ATsection] = ACTIONS(5897), + [anon_sym_ATonce] = ACTIONS(5900), + [anon_sym_ATverbatim] = ACTIONS(5903), + [anon_sym_ATpush] = ACTIONS(5906), + [anon_sym_ATendpush] = ACTIONS(2599), + [anon_sym_ATpushOnce] = ACTIONS(5909), + [anon_sym_ATpushIf] = ACTIONS(5912), + [anon_sym_ATprepend] = ACTIONS(5915), + [anon_sym_ATprependOnce] = ACTIONS(5918), + [anon_sym_ATif] = ACTIONS(5921), + [anon_sym_ATunless] = ACTIONS(5924), + [anon_sym_ATisset] = ACTIONS(5927), + [anon_sym_ATempty] = ACTIONS(5930), + [anon_sym_ATauth] = ACTIONS(5933), + [anon_sym_ATguest] = ACTIONS(5936), + [anon_sym_ATproduction] = ACTIONS(5939), + [anon_sym_ATenv] = ACTIONS(5942), + [anon_sym_AThasSection] = ACTIONS(5945), + [anon_sym_ATsectionMissing] = ACTIONS(5948), + [anon_sym_ATerror] = ACTIONS(5951), + [aux_sym__custom_token1] = ACTIONS(5954), + [aux_sym__custom_token2] = ACTIONS(5957), + [anon_sym_ATswitch] = ACTIONS(5960), + [aux_sym_loop_operator_token1] = ACTIONS(5963), + [anon_sym_ATfor] = ACTIONS(5966), + [anon_sym_ATforeach] = ACTIONS(5969), + [anon_sym_ATforelse] = ACTIONS(5972), + [anon_sym_ATwhile] = ACTIONS(5975), + [anon_sym_ATpersist] = ACTIONS(5978), + [anon_sym_ATteleport] = ACTIONS(5981), + [anon_sym_ATvolt] = ACTIONS(5984), + [aux_sym_text_token1] = ACTIONS(5987), + [aux_sym_text_token2] = ACTIONS(5987), + [aux_sym_text_token3] = ACTIONS(5990), }, [391] = { [sym__definition] = STATE(2111), @@ -52911,47 +53312,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(5853), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(5993), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [392] = { [sym__definition] = STATE(2111), @@ -53003,47 +53404,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(4663), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(4773), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [393] = { [sym__definition] = STATE(2111), @@ -53095,47 +53496,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(392), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(5855), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(5995), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [394] = { [sym__definition] = STATE(2012), @@ -53187,47 +53588,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(403), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(5857), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(5997), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [395] = { [sym__definition] = STATE(2012), @@ -53279,47 +53680,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(5859), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(5999), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [396] = { [sym__definition] = STATE(2152), @@ -53371,47 +53772,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(404), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(5861), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(6001), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [397] = { [sym__definition] = STATE(2111), @@ -53463,47 +53864,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(5863), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(6003), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [398] = { [sym__definition] = STATE(2152), @@ -53555,47 +53956,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(5865), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(6005), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [399] = { [sym__definition] = STATE(2012), @@ -53647,47 +54048,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(5867), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(6007), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [400] = { [sym__definition] = STATE(1374), @@ -53739,47 +54140,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(368), [sym_text] = STATE(1153), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(5451), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5453), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5455), - [anon_sym_ATphp] = ACTIONS(5457), - [aux_sym_attribute_token1] = ACTIONS(5459), - [aux_sym__inline_directive_token1] = ACTIONS(5461), - [anon_sym_ATfragment] = ACTIONS(5463), - [anon_sym_ATsection] = ACTIONS(5465), - [anon_sym_ATonce] = ACTIONS(5467), - [anon_sym_ATverbatim] = ACTIONS(5469), - [anon_sym_ATpush] = ACTIONS(5471), - [anon_sym_ATpushOnce] = ACTIONS(5473), - [anon_sym_ATpushIf] = ACTIONS(5475), - [anon_sym_ATprepend] = ACTIONS(5477), - [anon_sym_ATprependOnce] = ACTIONS(5479), - [anon_sym_ATendPrependOnce] = ACTIONS(2567), - [anon_sym_ATif] = ACTIONS(5481), - [anon_sym_ATunless] = ACTIONS(5483), - [anon_sym_ATisset] = ACTIONS(5485), - [anon_sym_ATempty] = ACTIONS(5487), - [anon_sym_ATauth] = ACTIONS(5489), - [anon_sym_ATguest] = ACTIONS(5491), - [anon_sym_ATproduction] = ACTIONS(5493), - [anon_sym_ATenv] = ACTIONS(5495), - [anon_sym_AThasSection] = ACTIONS(5497), - [anon_sym_ATsectionMissing] = ACTIONS(5499), - [anon_sym_ATerror] = ACTIONS(5501), - [aux_sym__custom_token1] = ACTIONS(5503), - [aux_sym__custom_token2] = ACTIONS(5505), - [anon_sym_ATswitch] = ACTIONS(5507), - [aux_sym_loop_operator_token1] = ACTIONS(5509), - [anon_sym_ATfor] = ACTIONS(5511), - [anon_sym_ATforeach] = ACTIONS(5513), - [anon_sym_ATforelse] = ACTIONS(5515), - [anon_sym_ATwhile] = ACTIONS(5517), - [anon_sym_ATpersist] = ACTIONS(5519), - [anon_sym_ATteleport] = ACTIONS(5521), - [anon_sym_ATvolt] = ACTIONS(5523), - [aux_sym_text_token1] = ACTIONS(5525), - [aux_sym_text_token2] = ACTIONS(5525), - [aux_sym_text_token3] = ACTIONS(5525), + [aux_sym_keyword_token1] = ACTIONS(5581), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5583), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5585), + [anon_sym_ATphp] = ACTIONS(5587), + [aux_sym_attribute_token1] = ACTIONS(5589), + [aux_sym__inline_directive_token1] = ACTIONS(5591), + [anon_sym_ATfragment] = ACTIONS(5593), + [anon_sym_ATsection] = ACTIONS(5595), + [anon_sym_ATonce] = ACTIONS(5597), + [anon_sym_ATverbatim] = ACTIONS(5599), + [anon_sym_ATpush] = ACTIONS(5601), + [anon_sym_ATpushOnce] = ACTIONS(5603), + [anon_sym_ATpushIf] = ACTIONS(5605), + [anon_sym_ATprepend] = ACTIONS(5607), + [anon_sym_ATprependOnce] = ACTIONS(5609), + [anon_sym_ATendPrependOnce] = ACTIONS(2628), + [anon_sym_ATif] = ACTIONS(5611), + [anon_sym_ATunless] = ACTIONS(5613), + [anon_sym_ATisset] = ACTIONS(5615), + [anon_sym_ATempty] = ACTIONS(5617), + [anon_sym_ATauth] = ACTIONS(5619), + [anon_sym_ATguest] = ACTIONS(5621), + [anon_sym_ATproduction] = ACTIONS(5623), + [anon_sym_ATenv] = ACTIONS(5625), + [anon_sym_AThasSection] = ACTIONS(5627), + [anon_sym_ATsectionMissing] = ACTIONS(5629), + [anon_sym_ATerror] = ACTIONS(5631), + [aux_sym__custom_token1] = ACTIONS(5633), + [aux_sym__custom_token2] = ACTIONS(5635), + [anon_sym_ATswitch] = ACTIONS(5637), + [aux_sym_loop_operator_token1] = ACTIONS(5639), + [anon_sym_ATfor] = ACTIONS(5641), + [anon_sym_ATforeach] = ACTIONS(5643), + [anon_sym_ATforelse] = ACTIONS(5645), + [anon_sym_ATwhile] = ACTIONS(5647), + [anon_sym_ATpersist] = ACTIONS(5649), + [anon_sym_ATteleport] = ACTIONS(5651), + [anon_sym_ATvolt] = ACTIONS(5653), + [aux_sym_text_token1] = ACTIONS(5655), + [aux_sym_text_token2] = ACTIONS(5655), + [aux_sym_text_token3] = ACTIONS(5657), }, [401] = { [sym__definition] = STATE(2028), @@ -53831,47 +54232,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(424), [sym_text] = STATE(1267), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(5869), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5871), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5873), - [anon_sym_ATphp] = ACTIONS(5875), - [aux_sym_attribute_token1] = ACTIONS(5877), - [aux_sym__inline_directive_token1] = ACTIONS(5879), - [anon_sym_ATfragment] = ACTIONS(5881), - [anon_sym_ATsection] = ACTIONS(5883), - [anon_sym_ATonce] = ACTIONS(5885), - [anon_sym_ATverbatim] = ACTIONS(5887), - [anon_sym_ATpush] = ACTIONS(5889), - [anon_sym_ATpushOnce] = ACTIONS(5891), - [anon_sym_ATpushIf] = ACTIONS(5893), - [anon_sym_ATendPushIf] = ACTIONS(2567), - [anon_sym_ATprepend] = ACTIONS(5895), - [anon_sym_ATprependOnce] = ACTIONS(5897), - [anon_sym_ATif] = ACTIONS(5899), - [anon_sym_ATunless] = ACTIONS(5901), - [anon_sym_ATisset] = ACTIONS(5903), - [anon_sym_ATempty] = ACTIONS(5905), - [anon_sym_ATauth] = ACTIONS(5907), - [anon_sym_ATguest] = ACTIONS(5909), - [anon_sym_ATproduction] = ACTIONS(5911), - [anon_sym_ATenv] = ACTIONS(5913), - [anon_sym_AThasSection] = ACTIONS(5915), - [anon_sym_ATsectionMissing] = ACTIONS(5917), - [anon_sym_ATerror] = ACTIONS(5919), - [aux_sym__custom_token1] = ACTIONS(5921), - [aux_sym__custom_token2] = ACTIONS(5923), - [anon_sym_ATswitch] = ACTIONS(5925), - [aux_sym_loop_operator_token1] = ACTIONS(5927), - [anon_sym_ATfor] = ACTIONS(5929), - [anon_sym_ATforeach] = ACTIONS(5931), - [anon_sym_ATforelse] = ACTIONS(5933), - [anon_sym_ATwhile] = ACTIONS(5935), - [anon_sym_ATpersist] = ACTIONS(5937), - [anon_sym_ATteleport] = ACTIONS(5939), - [anon_sym_ATvolt] = ACTIONS(5941), - [aux_sym_text_token1] = ACTIONS(5943), - [aux_sym_text_token2] = ACTIONS(5943), - [aux_sym_text_token3] = ACTIONS(5943), + [aux_sym_keyword_token1] = ACTIONS(6009), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6011), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6013), + [anon_sym_ATphp] = ACTIONS(6015), + [aux_sym_attribute_token1] = ACTIONS(6017), + [aux_sym__inline_directive_token1] = ACTIONS(6019), + [anon_sym_ATfragment] = ACTIONS(6021), + [anon_sym_ATsection] = ACTIONS(6023), + [anon_sym_ATonce] = ACTIONS(6025), + [anon_sym_ATverbatim] = ACTIONS(6027), + [anon_sym_ATpush] = ACTIONS(6029), + [anon_sym_ATpushOnce] = ACTIONS(6031), + [anon_sym_ATpushIf] = ACTIONS(6033), + [anon_sym_ATendPushIf] = ACTIONS(2628), + [anon_sym_ATprepend] = ACTIONS(6035), + [anon_sym_ATprependOnce] = ACTIONS(6037), + [anon_sym_ATif] = ACTIONS(6039), + [anon_sym_ATunless] = ACTIONS(6041), + [anon_sym_ATisset] = ACTIONS(6043), + [anon_sym_ATempty] = ACTIONS(6045), + [anon_sym_ATauth] = ACTIONS(6047), + [anon_sym_ATguest] = ACTIONS(6049), + [anon_sym_ATproduction] = ACTIONS(6051), + [anon_sym_ATenv] = ACTIONS(6053), + [anon_sym_AThasSection] = ACTIONS(6055), + [anon_sym_ATsectionMissing] = ACTIONS(6057), + [anon_sym_ATerror] = ACTIONS(6059), + [aux_sym__custom_token1] = ACTIONS(6061), + [aux_sym__custom_token2] = ACTIONS(6063), + [anon_sym_ATswitch] = ACTIONS(6065), + [aux_sym_loop_operator_token1] = ACTIONS(6067), + [anon_sym_ATfor] = ACTIONS(6069), + [anon_sym_ATforeach] = ACTIONS(6071), + [anon_sym_ATforelse] = ACTIONS(6073), + [anon_sym_ATwhile] = ACTIONS(6075), + [anon_sym_ATpersist] = ACTIONS(6077), + [anon_sym_ATteleport] = ACTIONS(6079), + [anon_sym_ATvolt] = ACTIONS(6081), + [aux_sym_text_token1] = ACTIONS(6083), + [aux_sym_text_token2] = ACTIONS(6083), + [aux_sym_text_token3] = ACTIONS(6085), }, [402] = { [sym__definition] = STATE(2012), @@ -53923,47 +54324,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(5945), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(6087), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [403] = { [sym__definition] = STATE(2012), @@ -54015,47 +54416,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(5947), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(6089), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [404] = { [sym__definition] = STATE(2152), @@ -54107,47 +54508,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(5949), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(6091), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [405] = { [sym__definition] = STATE(2152), @@ -54199,47 +54600,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(398), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(5951), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(6093), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [406] = { [sym__definition] = STATE(2012), @@ -54291,47 +54692,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(399), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(5953), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(6095), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [407] = { [sym__definition] = STATE(2111), @@ -54383,47 +54784,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(5955), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(6097), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [408] = { [sym__definition] = STATE(2111), @@ -54475,47 +54876,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(407), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(5957), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(6099), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [409] = { [sym__definition] = STATE(2111), @@ -54567,47 +54968,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(5957), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(6099), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [410] = { [sym__definition] = STATE(2111), @@ -54659,47 +55060,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(5959), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(6101), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [411] = { [sym__definition] = STATE(2111), @@ -54751,47 +55152,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(409), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(5961), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(6103), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [412] = { [sym__definition] = STATE(2012), @@ -54843,47 +55244,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(288), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(5963), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(6105), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [413] = { [sym__definition] = STATE(2152), @@ -54935,47 +55336,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(276), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(5965), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(6107), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [414] = { [sym__definition] = STATE(2152), @@ -55027,47 +55428,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(219), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(5967), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(6109), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [415] = { [sym__definition] = STATE(2012), @@ -55119,47 +55520,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(211), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(5969), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(6111), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [416] = { [sym__definition] = STATE(2152), @@ -55211,47 +55612,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(414), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(5971), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(6113), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [417] = { [sym__definition] = STATE(2111), @@ -55303,47 +55704,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(391), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(5973), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(6115), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [418] = { [sym__definition] = STATE(2028), @@ -55395,47 +55796,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(401), [sym_text] = STATE(1267), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(5869), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5871), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5873), - [anon_sym_ATphp] = ACTIONS(5875), - [aux_sym_attribute_token1] = ACTIONS(5877), - [aux_sym__inline_directive_token1] = ACTIONS(5879), - [anon_sym_ATfragment] = ACTIONS(5881), - [anon_sym_ATsection] = ACTIONS(5883), - [anon_sym_ATonce] = ACTIONS(5885), - [anon_sym_ATverbatim] = ACTIONS(5887), - [anon_sym_ATpush] = ACTIONS(5889), - [anon_sym_ATpushOnce] = ACTIONS(5891), - [anon_sym_ATpushIf] = ACTIONS(5893), - [anon_sym_ATendPushIf] = ACTIONS(2671), - [anon_sym_ATprepend] = ACTIONS(5895), - [anon_sym_ATprependOnce] = ACTIONS(5897), - [anon_sym_ATif] = ACTIONS(5899), - [anon_sym_ATunless] = ACTIONS(5901), - [anon_sym_ATisset] = ACTIONS(5903), - [anon_sym_ATempty] = ACTIONS(5905), - [anon_sym_ATauth] = ACTIONS(5907), - [anon_sym_ATguest] = ACTIONS(5909), - [anon_sym_ATproduction] = ACTIONS(5911), - [anon_sym_ATenv] = ACTIONS(5913), - [anon_sym_AThasSection] = ACTIONS(5915), - [anon_sym_ATsectionMissing] = ACTIONS(5917), - [anon_sym_ATerror] = ACTIONS(5919), - [aux_sym__custom_token1] = ACTIONS(5921), - [aux_sym__custom_token2] = ACTIONS(5923), - [anon_sym_ATswitch] = ACTIONS(5925), - [aux_sym_loop_operator_token1] = ACTIONS(5927), - [anon_sym_ATfor] = ACTIONS(5929), - [anon_sym_ATforeach] = ACTIONS(5931), - [anon_sym_ATforelse] = ACTIONS(5933), - [anon_sym_ATwhile] = ACTIONS(5935), - [anon_sym_ATpersist] = ACTIONS(5937), - [anon_sym_ATteleport] = ACTIONS(5939), - [anon_sym_ATvolt] = ACTIONS(5941), - [aux_sym_text_token1] = ACTIONS(5943), - [aux_sym_text_token2] = ACTIONS(5943), - [aux_sym_text_token3] = ACTIONS(5943), + [aux_sym_keyword_token1] = ACTIONS(6009), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6011), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6013), + [anon_sym_ATphp] = ACTIONS(6015), + [aux_sym_attribute_token1] = ACTIONS(6017), + [aux_sym__inline_directive_token1] = ACTIONS(6019), + [anon_sym_ATfragment] = ACTIONS(6021), + [anon_sym_ATsection] = ACTIONS(6023), + [anon_sym_ATonce] = ACTIONS(6025), + [anon_sym_ATverbatim] = ACTIONS(6027), + [anon_sym_ATpush] = ACTIONS(6029), + [anon_sym_ATpushOnce] = ACTIONS(6031), + [anon_sym_ATpushIf] = ACTIONS(6033), + [anon_sym_ATendPushIf] = ACTIONS(2734), + [anon_sym_ATprepend] = ACTIONS(6035), + [anon_sym_ATprependOnce] = ACTIONS(6037), + [anon_sym_ATif] = ACTIONS(6039), + [anon_sym_ATunless] = ACTIONS(6041), + [anon_sym_ATisset] = ACTIONS(6043), + [anon_sym_ATempty] = ACTIONS(6045), + [anon_sym_ATauth] = ACTIONS(6047), + [anon_sym_ATguest] = ACTIONS(6049), + [anon_sym_ATproduction] = ACTIONS(6051), + [anon_sym_ATenv] = ACTIONS(6053), + [anon_sym_AThasSection] = ACTIONS(6055), + [anon_sym_ATsectionMissing] = ACTIONS(6057), + [anon_sym_ATerror] = ACTIONS(6059), + [aux_sym__custom_token1] = ACTIONS(6061), + [aux_sym__custom_token2] = ACTIONS(6063), + [anon_sym_ATswitch] = ACTIONS(6065), + [aux_sym_loop_operator_token1] = ACTIONS(6067), + [anon_sym_ATfor] = ACTIONS(6069), + [anon_sym_ATforeach] = ACTIONS(6071), + [anon_sym_ATforelse] = ACTIONS(6073), + [anon_sym_ATwhile] = ACTIONS(6075), + [anon_sym_ATpersist] = ACTIONS(6077), + [anon_sym_ATteleport] = ACTIONS(6079), + [anon_sym_ATvolt] = ACTIONS(6081), + [aux_sym_text_token1] = ACTIONS(6083), + [aux_sym_text_token2] = ACTIONS(6083), + [aux_sym_text_token3] = ACTIONS(6085), }, [419] = { [sym__definition] = STATE(2012), @@ -55487,47 +55888,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(415), [sym_text] = STATE(2170), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2321), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2323), - [anon_sym_ATphp] = ACTIONS(2325), - [aux_sym_attribute_token1] = ACTIONS(2327), - [aux_sym__inline_directive_token1] = ACTIONS(2329), - [anon_sym_ATfragment] = ACTIONS(2331), - [anon_sym_ATsection] = ACTIONS(2333), - [anon_sym_ATonce] = ACTIONS(2335), - [anon_sym_ATendonce] = ACTIONS(5975), - [anon_sym_ATverbatim] = ACTIONS(2339), - [anon_sym_ATpush] = ACTIONS(2341), - [anon_sym_ATpushOnce] = ACTIONS(2343), - [anon_sym_ATpushIf] = ACTIONS(2345), - [anon_sym_ATprepend] = ACTIONS(2347), - [anon_sym_ATprependOnce] = ACTIONS(2349), - [anon_sym_ATif] = ACTIONS(2351), - [anon_sym_ATunless] = ACTIONS(2353), - [anon_sym_ATisset] = ACTIONS(2355), - [anon_sym_ATempty] = ACTIONS(2357), - [anon_sym_ATauth] = ACTIONS(2359), - [anon_sym_ATguest] = ACTIONS(2361), - [anon_sym_ATproduction] = ACTIONS(2363), - [anon_sym_ATenv] = ACTIONS(2365), - [anon_sym_AThasSection] = ACTIONS(2367), - [anon_sym_ATsectionMissing] = ACTIONS(2369), - [anon_sym_ATerror] = ACTIONS(2371), - [aux_sym__custom_token1] = ACTIONS(2373), - [aux_sym__custom_token2] = ACTIONS(2375), - [anon_sym_ATswitch] = ACTIONS(2377), - [aux_sym_loop_operator_token1] = ACTIONS(2379), - [anon_sym_ATfor] = ACTIONS(2381), - [anon_sym_ATforeach] = ACTIONS(2383), - [anon_sym_ATforelse] = ACTIONS(2385), - [anon_sym_ATwhile] = ACTIONS(2387), - [anon_sym_ATpersist] = ACTIONS(2389), - [anon_sym_ATteleport] = ACTIONS(2391), - [anon_sym_ATvolt] = ACTIONS(2393), - [aux_sym_text_token1] = ACTIONS(2395), - [aux_sym_text_token2] = ACTIONS(2395), - [aux_sym_text_token3] = ACTIONS(2395), + [aux_sym_keyword_token1] = ACTIONS(2375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2379), + [anon_sym_ATphp] = ACTIONS(2381), + [aux_sym_attribute_token1] = ACTIONS(2383), + [aux_sym__inline_directive_token1] = ACTIONS(2385), + [anon_sym_ATfragment] = ACTIONS(2387), + [anon_sym_ATsection] = ACTIONS(2389), + [anon_sym_ATonce] = ACTIONS(2391), + [anon_sym_ATendonce] = ACTIONS(6117), + [anon_sym_ATverbatim] = ACTIONS(2395), + [anon_sym_ATpush] = ACTIONS(2397), + [anon_sym_ATpushOnce] = ACTIONS(2399), + [anon_sym_ATpushIf] = ACTIONS(2401), + [anon_sym_ATprepend] = ACTIONS(2403), + [anon_sym_ATprependOnce] = ACTIONS(2405), + [anon_sym_ATif] = ACTIONS(2407), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2411), + [anon_sym_ATempty] = ACTIONS(2413), + [anon_sym_ATauth] = ACTIONS(2415), + [anon_sym_ATguest] = ACTIONS(2417), + [anon_sym_ATproduction] = ACTIONS(2419), + [anon_sym_ATenv] = ACTIONS(2421), + [anon_sym_AThasSection] = ACTIONS(2423), + [anon_sym_ATsectionMissing] = ACTIONS(2425), + [anon_sym_ATerror] = ACTIONS(2427), + [aux_sym__custom_token1] = ACTIONS(2429), + [aux_sym__custom_token2] = ACTIONS(2431), + [anon_sym_ATswitch] = ACTIONS(2433), + [aux_sym_loop_operator_token1] = ACTIONS(2435), + [anon_sym_ATfor] = ACTIONS(2437), + [anon_sym_ATforeach] = ACTIONS(2439), + [anon_sym_ATforelse] = ACTIONS(2441), + [anon_sym_ATwhile] = ACTIONS(2443), + [anon_sym_ATpersist] = ACTIONS(2445), + [anon_sym_ATteleport] = ACTIONS(2447), + [anon_sym_ATvolt] = ACTIONS(2449), + [aux_sym_text_token1] = ACTIONS(2451), + [aux_sym_text_token2] = ACTIONS(2451), + [aux_sym_text_token3] = ACTIONS(2453), }, [420] = { [sym__definition] = STATE(2152), @@ -55579,47 +55980,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(283), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(5977), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(6119), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, [421] = { [sym__definition] = STATE(2111), @@ -55671,47 +56072,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(5979), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(6121), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [422] = { [sym__definition] = STATE(1966), @@ -55762,7 +56163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__volt] = STATE(1985), [sym_text] = STATE(1986), [aux_sym_blade_repeat1] = STATE(251), - [ts_builtin_sym_end] = ACTIONS(5981), + [ts_builtin_sym_end] = ACTIONS(6123), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), [aux_sym_keyword_token1] = ACTIONS(7), [anon_sym_LBRACE_LBRACE] = ACTIONS(9), @@ -55803,7 +56204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATvolt] = ACTIONS(79), [aux_sym_text_token1] = ACTIONS(81), [aux_sym_text_token2] = ACTIONS(81), - [aux_sym_text_token3] = ACTIONS(81), + [aux_sym_text_token3] = ACTIONS(83), }, [423] = { [sym__definition] = STATE(2111), @@ -55855,47 +56256,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(421), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(5983), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(6125), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [424] = { [sym__definition] = STATE(2028), @@ -55947,47 +56348,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(424), [sym_text] = STATE(1267), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(5985), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5988), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5991), - [anon_sym_ATphp] = ACTIONS(5994), - [aux_sym_attribute_token1] = ACTIONS(5997), - [aux_sym__inline_directive_token1] = ACTIONS(6000), - [anon_sym_ATfragment] = ACTIONS(6003), - [anon_sym_ATsection] = ACTIONS(6006), - [anon_sym_ATonce] = ACTIONS(6009), - [anon_sym_ATverbatim] = ACTIONS(6012), - [anon_sym_ATpush] = ACTIONS(6015), - [anon_sym_ATpushOnce] = ACTIONS(6018), - [anon_sym_ATpushIf] = ACTIONS(6021), - [anon_sym_ATendPushIf] = ACTIONS(2541), - [anon_sym_ATprepend] = ACTIONS(6024), - [anon_sym_ATprependOnce] = ACTIONS(6027), - [anon_sym_ATif] = ACTIONS(6030), - [anon_sym_ATunless] = ACTIONS(6033), - [anon_sym_ATisset] = ACTIONS(6036), - [anon_sym_ATempty] = ACTIONS(6039), - [anon_sym_ATauth] = ACTIONS(6042), - [anon_sym_ATguest] = ACTIONS(6045), - [anon_sym_ATproduction] = ACTIONS(6048), - [anon_sym_ATenv] = ACTIONS(6051), - [anon_sym_AThasSection] = ACTIONS(6054), - [anon_sym_ATsectionMissing] = ACTIONS(6057), - [anon_sym_ATerror] = ACTIONS(6060), - [aux_sym__custom_token1] = ACTIONS(6063), - [aux_sym__custom_token2] = ACTIONS(6066), - [anon_sym_ATswitch] = ACTIONS(6069), - [aux_sym_loop_operator_token1] = ACTIONS(6072), - [anon_sym_ATfor] = ACTIONS(6075), - [anon_sym_ATforeach] = ACTIONS(6078), - [anon_sym_ATforelse] = ACTIONS(6081), - [anon_sym_ATwhile] = ACTIONS(6084), - [anon_sym_ATpersist] = ACTIONS(6087), - [anon_sym_ATteleport] = ACTIONS(6090), - [anon_sym_ATvolt] = ACTIONS(6093), - [aux_sym_text_token1] = ACTIONS(6096), - [aux_sym_text_token2] = ACTIONS(6096), - [aux_sym_text_token3] = ACTIONS(6096), + [aux_sym_keyword_token1] = ACTIONS(6127), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6130), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6133), + [anon_sym_ATphp] = ACTIONS(6136), + [aux_sym_attribute_token1] = ACTIONS(6139), + [aux_sym__inline_directive_token1] = ACTIONS(6142), + [anon_sym_ATfragment] = ACTIONS(6145), + [anon_sym_ATsection] = ACTIONS(6148), + [anon_sym_ATonce] = ACTIONS(6151), + [anon_sym_ATverbatim] = ACTIONS(6154), + [anon_sym_ATpush] = ACTIONS(6157), + [anon_sym_ATpushOnce] = ACTIONS(6160), + [anon_sym_ATpushIf] = ACTIONS(6163), + [anon_sym_ATendPushIf] = ACTIONS(2599), + [anon_sym_ATprepend] = ACTIONS(6166), + [anon_sym_ATprependOnce] = ACTIONS(6169), + [anon_sym_ATif] = ACTIONS(6172), + [anon_sym_ATunless] = ACTIONS(6175), + [anon_sym_ATisset] = ACTIONS(6178), + [anon_sym_ATempty] = ACTIONS(6181), + [anon_sym_ATauth] = ACTIONS(6184), + [anon_sym_ATguest] = ACTIONS(6187), + [anon_sym_ATproduction] = ACTIONS(6190), + [anon_sym_ATenv] = ACTIONS(6193), + [anon_sym_AThasSection] = ACTIONS(6196), + [anon_sym_ATsectionMissing] = ACTIONS(6199), + [anon_sym_ATerror] = ACTIONS(6202), + [aux_sym__custom_token1] = ACTIONS(6205), + [aux_sym__custom_token2] = ACTIONS(6208), + [anon_sym_ATswitch] = ACTIONS(6211), + [aux_sym_loop_operator_token1] = ACTIONS(6214), + [anon_sym_ATfor] = ACTIONS(6217), + [anon_sym_ATforeach] = ACTIONS(6220), + [anon_sym_ATforelse] = ACTIONS(6223), + [anon_sym_ATwhile] = ACTIONS(6226), + [anon_sym_ATpersist] = ACTIONS(6229), + [anon_sym_ATteleport] = ACTIONS(6232), + [anon_sym_ATvolt] = ACTIONS(6235), + [aux_sym_text_token1] = ACTIONS(6238), + [aux_sym_text_token2] = ACTIONS(6238), + [aux_sym_text_token3] = ACTIONS(6241), }, [425] = { [sym__definition] = STATE(2111), @@ -56039,47 +56440,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(428), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(6099), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(6244), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [426] = { [sym__definition] = STATE(2111), @@ -56131,47 +56532,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(5983), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(6125), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [427] = { [sym__definition] = STATE(2111), @@ -56223,47 +56624,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(426), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(6101), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(6246), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [428] = { [sym__definition] = STATE(2111), @@ -56315,47 +56716,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_text] = STATE(1850), [aux_sym_blade_repeat1] = STATE(206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2239), - [anon_sym_ATphp] = ACTIONS(2241), - [aux_sym_attribute_token1] = ACTIONS(2243), - [aux_sym__inline_directive_token1] = ACTIONS(2245), - [anon_sym_ATfragment] = ACTIONS(2247), - [anon_sym_ATsection] = ACTIONS(2249), - [anon_sym_ATonce] = ACTIONS(2251), - [anon_sym_ATverbatim] = ACTIONS(2253), - [anon_sym_ATpush] = ACTIONS(2255), - [anon_sym_ATpushOnce] = ACTIONS(2257), - [anon_sym_ATpushIf] = ACTIONS(2259), - [anon_sym_ATprepend] = ACTIONS(2261), - [anon_sym_ATprependOnce] = ACTIONS(2263), - [anon_sym_ATif] = ACTIONS(2265), - [anon_sym_ATunless] = ACTIONS(2267), - [anon_sym_ATisset] = ACTIONS(2269), - [anon_sym_ATempty] = ACTIONS(2271), - [anon_sym_ATauth] = ACTIONS(2273), - [anon_sym_ATguest] = ACTIONS(2275), - [anon_sym_ATproduction] = ACTIONS(2277), - [anon_sym_ATenv] = ACTIONS(2279), - [anon_sym_AThasSection] = ACTIONS(2281), - [anon_sym_ATsectionMissing] = ACTIONS(2283), - [anon_sym_ATerror] = ACTIONS(2285), - [aux_sym__custom_token1] = ACTIONS(2287), - [aux_sym__custom_token2] = ACTIONS(2289), - [anon_sym_ATswitch] = ACTIONS(2291), - [anon_sym_ATendswitch] = ACTIONS(5973), - [aux_sym_loop_operator_token1] = ACTIONS(2295), - [anon_sym_ATfor] = ACTIONS(2297), - [anon_sym_ATforeach] = ACTIONS(2299), - [anon_sym_ATforelse] = ACTIONS(2301), - [anon_sym_ATwhile] = ACTIONS(2303), - [anon_sym_ATpersist] = ACTIONS(2305), - [anon_sym_ATteleport] = ACTIONS(2307), - [anon_sym_ATvolt] = ACTIONS(2309), - [aux_sym_text_token1] = ACTIONS(2311), - [aux_sym_text_token2] = ACTIONS(2311), - [aux_sym_text_token3] = ACTIONS(2311), + [aux_sym_keyword_token1] = ACTIONS(2289), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2293), + [anon_sym_ATphp] = ACTIONS(2295), + [aux_sym_attribute_token1] = ACTIONS(2297), + [aux_sym__inline_directive_token1] = ACTIONS(2299), + [anon_sym_ATfragment] = ACTIONS(2301), + [anon_sym_ATsection] = ACTIONS(2303), + [anon_sym_ATonce] = ACTIONS(2305), + [anon_sym_ATverbatim] = ACTIONS(2307), + [anon_sym_ATpush] = ACTIONS(2309), + [anon_sym_ATpushOnce] = ACTIONS(2311), + [anon_sym_ATpushIf] = ACTIONS(2313), + [anon_sym_ATprepend] = ACTIONS(2315), + [anon_sym_ATprependOnce] = ACTIONS(2317), + [anon_sym_ATif] = ACTIONS(2319), + [anon_sym_ATunless] = ACTIONS(2321), + [anon_sym_ATisset] = ACTIONS(2323), + [anon_sym_ATempty] = ACTIONS(2325), + [anon_sym_ATauth] = ACTIONS(2327), + [anon_sym_ATguest] = ACTIONS(2329), + [anon_sym_ATproduction] = ACTIONS(2331), + [anon_sym_ATenv] = ACTIONS(2333), + [anon_sym_AThasSection] = ACTIONS(2335), + [anon_sym_ATsectionMissing] = ACTIONS(2337), + [anon_sym_ATerror] = ACTIONS(2339), + [aux_sym__custom_token1] = ACTIONS(2341), + [aux_sym__custom_token2] = ACTIONS(2343), + [anon_sym_ATswitch] = ACTIONS(2345), + [anon_sym_ATendswitch] = ACTIONS(6115), + [aux_sym_loop_operator_token1] = ACTIONS(2349), + [anon_sym_ATfor] = ACTIONS(2351), + [anon_sym_ATforeach] = ACTIONS(2353), + [anon_sym_ATforelse] = ACTIONS(2355), + [anon_sym_ATwhile] = ACTIONS(2357), + [anon_sym_ATpersist] = ACTIONS(2359), + [anon_sym_ATteleport] = ACTIONS(2361), + [anon_sym_ATvolt] = ACTIONS(2363), + [aux_sym_text_token1] = ACTIONS(2365), + [aux_sym_text_token2] = ACTIONS(2365), + [aux_sym_text_token3] = ACTIONS(2367), }, [429] = { [sym__definition] = STATE(2152), @@ -56407,47 +56808,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__directive_body] = STATE(359), [sym_text] = STATE(2155), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [aux_sym_keyword_token1] = ACTIONS(2155), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2157), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2159), - [anon_sym_ATphp] = ACTIONS(2161), - [aux_sym_attribute_token1] = ACTIONS(2163), - [aux_sym__inline_directive_token1] = ACTIONS(2165), - [anon_sym_ATfragment] = ACTIONS(2167), - [anon_sym_ATsection] = ACTIONS(2169), - [anon_sym_ATonce] = ACTIONS(2171), - [anon_sym_ATverbatim] = ACTIONS(2173), - [anon_sym_ATendverbatim] = ACTIONS(6103), - [anon_sym_ATpush] = ACTIONS(2177), - [anon_sym_ATpushOnce] = ACTIONS(2179), - [anon_sym_ATpushIf] = ACTIONS(2181), - [anon_sym_ATprepend] = ACTIONS(2183), - [anon_sym_ATprependOnce] = ACTIONS(2185), - [anon_sym_ATif] = ACTIONS(2187), - [anon_sym_ATunless] = ACTIONS(2189), - [anon_sym_ATisset] = ACTIONS(2191), - [anon_sym_ATempty] = ACTIONS(2193), - [anon_sym_ATauth] = ACTIONS(2195), - [anon_sym_ATguest] = ACTIONS(2197), - [anon_sym_ATproduction] = ACTIONS(2199), - [anon_sym_ATenv] = ACTIONS(2201), - [anon_sym_AThasSection] = ACTIONS(2203), - [anon_sym_ATsectionMissing] = ACTIONS(2205), - [anon_sym_ATerror] = ACTIONS(2207), - [aux_sym__custom_token1] = ACTIONS(2209), - [aux_sym__custom_token2] = ACTIONS(2211), - [anon_sym_ATswitch] = ACTIONS(2213), - [aux_sym_loop_operator_token1] = ACTIONS(2215), - [anon_sym_ATfor] = ACTIONS(2217), - [anon_sym_ATforeach] = ACTIONS(2219), - [anon_sym_ATforelse] = ACTIONS(2221), - [anon_sym_ATwhile] = ACTIONS(2223), - [anon_sym_ATpersist] = ACTIONS(2225), - [anon_sym_ATteleport] = ACTIONS(2227), - [anon_sym_ATvolt] = ACTIONS(2229), - [aux_sym_text_token1] = ACTIONS(2231), - [aux_sym_text_token2] = ACTIONS(2231), - [aux_sym_text_token3] = ACTIONS(2231), + [aux_sym_keyword_token1] = ACTIONS(2207), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2211), + [anon_sym_ATphp] = ACTIONS(2213), + [aux_sym_attribute_token1] = ACTIONS(2215), + [aux_sym__inline_directive_token1] = ACTIONS(2217), + [anon_sym_ATfragment] = ACTIONS(2219), + [anon_sym_ATsection] = ACTIONS(2221), + [anon_sym_ATonce] = ACTIONS(2223), + [anon_sym_ATverbatim] = ACTIONS(2225), + [anon_sym_ATendverbatim] = ACTIONS(6248), + [anon_sym_ATpush] = ACTIONS(2229), + [anon_sym_ATpushOnce] = ACTIONS(2231), + [anon_sym_ATpushIf] = ACTIONS(2233), + [anon_sym_ATprepend] = ACTIONS(2235), + [anon_sym_ATprependOnce] = ACTIONS(2237), + [anon_sym_ATif] = ACTIONS(2239), + [anon_sym_ATunless] = ACTIONS(2241), + [anon_sym_ATisset] = ACTIONS(2243), + [anon_sym_ATempty] = ACTIONS(2245), + [anon_sym_ATauth] = ACTIONS(2247), + [anon_sym_ATguest] = ACTIONS(2249), + [anon_sym_ATproduction] = ACTIONS(2251), + [anon_sym_ATenv] = ACTIONS(2253), + [anon_sym_AThasSection] = ACTIONS(2255), + [anon_sym_ATsectionMissing] = ACTIONS(2257), + [anon_sym_ATerror] = ACTIONS(2259), + [aux_sym__custom_token1] = ACTIONS(2261), + [aux_sym__custom_token2] = ACTIONS(2263), + [anon_sym_ATswitch] = ACTIONS(2265), + [aux_sym_loop_operator_token1] = ACTIONS(2267), + [anon_sym_ATfor] = ACTIONS(2269), + [anon_sym_ATforeach] = ACTIONS(2271), + [anon_sym_ATforelse] = ACTIONS(2273), + [anon_sym_ATwhile] = ACTIONS(2275), + [anon_sym_ATpersist] = ACTIONS(2277), + [anon_sym_ATteleport] = ACTIONS(2279), + [anon_sym_ATvolt] = ACTIONS(2281), + [aux_sym_text_token1] = ACTIONS(2283), + [aux_sym_text_token2] = ACTIONS(2283), + [aux_sym_text_token3] = ACTIONS(2285), }, }; @@ -56455,7 +56856,7 @@ static const uint16_t ts_small_parse_table[] = { [0] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -56463,7 +56864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3783), 1, sym__if_statement_directive_body, - ACTIONS(6107), 12, + ACTIONS(6252), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -56475,8 +56876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 31, + ACTIONS(6250), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -56508,10 +56908,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [63] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -56519,7 +56920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3705), 1, sym__if_statement_directive_body, - ACTIONS(6107), 12, + ACTIONS(6252), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -56531,8 +56932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 31, + ACTIONS(6250), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -56564,10 +56964,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [126] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -56575,7 +56976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3619), 1, sym__if_statement_directive_body, - ACTIONS(6107), 12, + ACTIONS(6252), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -56587,8 +56988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 31, + ACTIONS(6250), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -56620,10 +57020,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [189] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -56631,7 +57032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3522), 1, sym__if_statement_directive_body, - ACTIONS(6107), 12, + ACTIONS(6252), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -56643,8 +57044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 31, + ACTIONS(6250), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -56676,10 +57076,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [252] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -56687,7 +57088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3667), 1, sym__if_statement_directive_body, - ACTIONS(6107), 12, + ACTIONS(6252), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -56699,8 +57100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 31, + ACTIONS(6250), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -56732,10 +57132,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [315] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -56743,7 +57144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3822), 1, sym__if_statement_directive_body, - ACTIONS(6107), 12, + ACTIONS(6252), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -56755,8 +57156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 31, + ACTIONS(6250), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -56788,10 +57188,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [378] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -56799,7 +57200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3622), 1, sym__if_statement_directive_body, - ACTIONS(6107), 12, + ACTIONS(6252), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -56811,8 +57212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 31, + ACTIONS(6250), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -56844,10 +57244,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [441] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -56855,7 +57256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3445), 1, sym__if_statement_directive_body, - ACTIONS(6107), 12, + ACTIONS(6252), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -56867,8 +57268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 31, + ACTIONS(6250), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -56900,10 +57300,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [504] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -56911,7 +57312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3747), 1, sym__if_statement_directive_body, - ACTIONS(6107), 12, + ACTIONS(6252), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -56923,8 +57324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 31, + ACTIONS(6250), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -56956,10 +57356,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [567] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -56967,7 +57368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3857), 1, sym__if_statement_directive_body, - ACTIONS(6107), 12, + ACTIONS(6252), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -56979,8 +57380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 31, + ACTIONS(6250), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57012,16 +57412,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [630] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(440), 1, sym_comment, STATE(953), 1, sym__directive_parameter, - ACTIONS(6107), 12, + ACTIONS(6252), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57033,8 +57434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 31, + ACTIONS(6250), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57066,16 +57466,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [690] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6117), 1, + ACTIONS(6262), 1, anon_sym_LPAREN, STATE(441), 1, sym_comment, STATE(969), 1, sym__directive_parameter, - ACTIONS(6115), 12, + ACTIONS(6260), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57087,8 +57488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6113), 31, + ACTIONS(6258), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57120,16 +57520,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [750] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(442), 1, sym_comment, STATE(587), 1, sym__directive_parameter, - ACTIONS(6115), 12, + ACTIONS(6260), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57141,8 +57542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6113), 31, + ACTIONS(6258), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57174,16 +57574,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [810] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(443), 1, sym_comment, STATE(559), 1, sym__directive_parameter, - ACTIONS(6115), 12, + ACTIONS(6260), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57195,8 +57596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6113), 31, + ACTIONS(6258), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57228,16 +57628,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [870] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(444), 1, sym_comment, STATE(655), 1, sym__directive_parameter, - ACTIONS(6115), 12, + ACTIONS(6260), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57249,8 +57650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6113), 31, + ACTIONS(6258), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57282,16 +57682,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [930] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6123), 1, + ACTIONS(6268), 1, anon_sym_LPAREN, STATE(445), 1, sym_comment, STATE(1082), 1, sym__directive_parameter, - ACTIONS(6115), 12, + ACTIONS(6260), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57303,8 +57704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6113), 31, + ACTIONS(6258), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57336,16 +57736,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [990] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6125), 1, + ACTIONS(6270), 1, anon_sym_LPAREN, STATE(446), 1, sym_comment, STATE(830), 1, sym__directive_parameter, - ACTIONS(6107), 12, + ACTIONS(6252), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57357,8 +57758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 31, + ACTIONS(6250), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57390,16 +57790,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [1050] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(447), 1, sym_comment, STATE(723), 1, sym__directive_parameter, - ACTIONS(6115), 12, + ACTIONS(6260), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57411,8 +57812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6113), 31, + ACTIONS(6258), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57444,16 +57844,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [1110] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(448), 1, sym_comment, STATE(683), 1, sym__directive_parameter, - ACTIONS(6107), 12, + ACTIONS(6252), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57465,8 +57866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 31, + ACTIONS(6250), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57498,16 +57898,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [1170] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(449), 1, sym_comment, STATE(1023), 1, sym__directive_parameter, - ACTIONS(6107), 12, + ACTIONS(6252), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57519,8 +57920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 31, + ACTIONS(6250), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57552,16 +57952,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [1230] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(450), 1, sym_comment, STATE(517), 1, sym__directive_parameter, - ACTIONS(6115), 12, + ACTIONS(6260), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57573,8 +57974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6113), 31, + ACTIONS(6258), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57606,16 +58006,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [1290] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(451), 1, sym_comment, STATE(480), 1, sym__directive_parameter, - ACTIONS(6115), 12, + ACTIONS(6260), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57627,8 +58028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6113), 31, + ACTIONS(6258), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57660,16 +58060,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [1350] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(452), 1, sym_comment, STATE(753), 1, sym__directive_parameter, - ACTIONS(6107), 12, + ACTIONS(6252), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57681,8 +58082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 31, + ACTIONS(6250), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57714,16 +58114,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [1410] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6125), 1, + ACTIONS(6270), 1, anon_sym_LPAREN, STATE(453), 1, sym_comment, STATE(627), 1, sym__directive_parameter, - ACTIONS(6115), 12, + ACTIONS(6260), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57735,8 +58136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6113), 31, + ACTIONS(6258), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57768,16 +58168,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [1470] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(454), 1, sym_comment, STATE(657), 1, sym__directive_parameter, - ACTIONS(6115), 12, + ACTIONS(6260), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57789,8 +58190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6113), 31, + ACTIONS(6258), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57822,16 +58222,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [1530] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(455), 1, sym_comment, STATE(820), 1, sym__directive_parameter, - ACTIONS(6107), 12, + ACTIONS(6252), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57843,8 +58244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 31, + ACTIONS(6250), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57876,16 +58276,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [1590] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(456), 1, sym_comment, STATE(1086), 1, sym__directive_parameter, - ACTIONS(6107), 12, + ACTIONS(6252), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57897,8 +58298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 31, + ACTIONS(6250), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57930,16 +58330,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [1650] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6117), 1, + ACTIONS(6262), 1, anon_sym_LPAREN, STATE(457), 1, sym_comment, STATE(496), 1, sym__directive_parameter, - ACTIONS(6107), 12, + ACTIONS(6252), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57951,8 +58352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 31, + ACTIONS(6250), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57984,16 +58384,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [1710] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6123), 1, + ACTIONS(6268), 1, anon_sym_LPAREN, STATE(458), 1, sym_comment, STATE(579), 1, sym__directive_parameter, - ACTIONS(6107), 12, + ACTIONS(6252), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58005,8 +58406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 31, + ACTIONS(6250), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58038,16 +58438,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [1770] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(459), 1, sym_comment, STATE(887), 1, sym__directive_parameter, - ACTIONS(6107), 12, + ACTIONS(6252), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58059,8 +58460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 31, + ACTIONS(6250), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58092,10 +58492,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [1830] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -58103,7 +58504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3500), 1, sym__if_statement_directive_body, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58114,8 +58515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58146,10 +58546,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [1891] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -58157,7 +58558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3958), 1, sym__if_statement_directive_body, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58168,8 +58569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58200,10 +58600,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [1952] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -58211,7 +58612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3931), 1, sym__if_statement_directive_body, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58222,8 +58623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58254,10 +58654,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [2013] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -58265,7 +58666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3633), 1, sym__if_statement_directive_body, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58276,8 +58677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -58308,10 +58708,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [2074] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -58319,7 +58720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3896), 1, sym__if_statement_directive_body, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58330,8 +58731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58362,10 +58762,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [2135] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -58373,7 +58774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3983), 1, sym__if_statement_directive_body, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58384,8 +58785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58416,10 +58816,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [2196] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -58427,7 +58828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3941), 1, sym__if_statement_directive_body, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58438,8 +58839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58470,10 +58870,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [2257] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -58481,7 +58882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3584), 1, sym__if_statement_directive_body, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58492,8 +58893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58524,10 +58924,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [2318] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -58535,7 +58936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3541), 1, sym__if_statement_directive_body, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58546,8 +58947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58578,10 +58978,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [2379] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -58589,7 +58990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3461), 1, sym__if_statement_directive_body, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58600,8 +59001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58632,10 +59032,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [2440] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -58643,7 +59044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3422), 1, sym__if_statement_directive_body, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58654,8 +59055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58686,10 +59086,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [2501] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -58697,7 +59098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3717), 1, sym__if_statement_directive_body, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58708,8 +59109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58740,10 +59140,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [2562] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -58751,7 +59152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3385), 1, sym__if_statement_directive_body, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58762,8 +59163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58794,10 +59194,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [2623] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -58805,7 +59206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3347), 1, sym__if_statement_directive_body, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58816,8 +59217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58848,10 +59248,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [2684] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -58859,7 +59260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3368), 1, sym__if_statement_directive_body, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58870,8 +59271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58902,10 +59302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [2745] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -58913,7 +59314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3313), 1, sym__if_statement_directive_body, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58924,8 +59325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58956,10 +59356,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [2806] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -58967,7 +59368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3793), 1, sym__if_statement_directive_body, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58978,8 +59379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59010,10 +59410,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [2867] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -59021,7 +59422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3260), 1, sym__if_statement_directive_body, - ACTIONS(6107), 12, + ACTIONS(6252), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -59033,8 +59434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 29, + ACTIONS(6250), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59064,10 +59464,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [2928] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(62), 1, sym__directive_parameter, @@ -59075,7 +59476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3294), 1, sym__if_statement_directive_body, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -59086,8 +59487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59118,12 +59518,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [2989] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(479), 1, sym_comment, - ACTIONS(6135), 12, + ACTIONS(6280), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -59135,8 +59536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 31, + ACTIONS(6278), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59168,12 +59568,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [3043] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(480), 1, sym_comment, - ACTIONS(6139), 12, + ACTIONS(6284), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -59185,8 +59586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6137), 31, + ACTIONS(6282), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59218,12 +59618,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [3097] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(481), 1, sym_comment, - ACTIONS(6143), 12, + ACTIONS(6288), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -59235,8 +59636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 31, + ACTIONS(6286), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59268,12 +59668,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [3151] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(482), 1, sym_comment, - ACTIONS(6147), 12, + ACTIONS(6292), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -59285,8 +59686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 31, + ACTIONS(6290), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59318,12 +59718,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [3205] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(483), 1, sym_comment, - ACTIONS(6151), 12, + ACTIONS(6296), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -59335,8 +59736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 31, + ACTIONS(6294), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59368,12 +59768,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [3259] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(484), 1, sym_comment, - ACTIONS(6155), 12, + ACTIONS(6300), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -59385,8 +59786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 31, + ACTIONS(6298), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59418,12 +59818,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [3313] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(485), 1, sym_comment, - ACTIONS(6159), 12, + ACTIONS(6304), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -59435,8 +59836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 31, + ACTIONS(6302), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59468,12 +59868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [3367] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(486), 1, sym_comment, - ACTIONS(6163), 12, + ACTIONS(6308), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -59485,8 +59886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 31, + ACTIONS(6306), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59518,12 +59918,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [3421] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(487), 1, sym_comment, - ACTIONS(6167), 12, + ACTIONS(6312), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -59535,8 +59936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 31, + ACTIONS(6310), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59568,12 +59968,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [3475] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(488), 1, sym_comment, - ACTIONS(6171), 12, + ACTIONS(6316), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -59585,8 +59986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 31, + ACTIONS(6314), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59618,12 +60018,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [3529] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(489), 1, sym_comment, - ACTIONS(6175), 12, + ACTIONS(6320), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -59635,8 +60036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 31, + ACTIONS(6318), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59668,12 +60068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [3583] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(490), 1, sym_comment, - ACTIONS(6179), 12, + ACTIONS(6324), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -59685,8 +60086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 31, + ACTIONS(6322), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59718,12 +60118,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [3637] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(491), 1, sym_comment, - ACTIONS(6183), 12, + ACTIONS(6328), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -59735,8 +60136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 31, + ACTIONS(6326), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59768,12 +60168,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [3691] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(492), 1, sym_comment, - ACTIONS(6187), 12, + ACTIONS(6332), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -59785,8 +60186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 31, + ACTIONS(6330), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59818,12 +60218,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [3745] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(493), 1, sym_comment, - ACTIONS(6115), 12, + ACTIONS(6260), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -59835,8 +60236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6113), 31, + ACTIONS(6258), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59868,12 +60268,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [3799] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(494), 1, sym_comment, - ACTIONS(6191), 12, + ACTIONS(6336), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -59885,8 +60286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 31, + ACTIONS(6334), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59918,12 +60318,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [3853] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(495), 1, sym_comment, - ACTIONS(6195), 12, + ACTIONS(6340), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -59935,8 +60336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6193), 31, + ACTIONS(6338), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59968,12 +60368,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [3907] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(496), 1, sym_comment, - ACTIONS(6199), 12, + ACTIONS(6344), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -59985,8 +60386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 31, + ACTIONS(6342), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60018,12 +60418,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [3961] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(497), 1, sym_comment, - ACTIONS(6203), 12, + ACTIONS(6348), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60035,8 +60436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 31, + ACTIONS(6346), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60068,12 +60468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [4015] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(498), 1, sym_comment, - ACTIONS(6207), 12, + ACTIONS(6352), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60085,8 +60486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 31, + ACTIONS(6350), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60118,12 +60518,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [4069] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(499), 1, sym_comment, - ACTIONS(6211), 12, + ACTIONS(6356), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60135,8 +60536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 31, + ACTIONS(6354), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60168,12 +60568,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [4123] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(500), 1, sym_comment, - ACTIONS(6215), 12, + ACTIONS(6360), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60185,8 +60586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 31, + ACTIONS(6358), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60218,12 +60618,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [4177] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(501), 1, sym_comment, - ACTIONS(6219), 12, + ACTIONS(6364), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60235,8 +60636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 31, + ACTIONS(6362), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60268,12 +60668,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [4231] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(502), 1, sym_comment, - ACTIONS(6135), 12, + ACTIONS(6280), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60285,8 +60686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 31, + ACTIONS(6278), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60318,12 +60718,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [4285] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(503), 1, sym_comment, - ACTIONS(6223), 12, + ACTIONS(6368), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60335,8 +60736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 31, + ACTIONS(6366), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60368,12 +60768,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [4339] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(504), 1, sym_comment, - ACTIONS(6227), 12, + ACTIONS(6372), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60385,8 +60786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 31, + ACTIONS(6370), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60418,12 +60818,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [4393] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(505), 1, sym_comment, - ACTIONS(6231), 12, + ACTIONS(6376), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60435,8 +60836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 31, + ACTIONS(6374), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60468,12 +60868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [4447] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(506), 1, sym_comment, - ACTIONS(6235), 12, + ACTIONS(6380), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60485,8 +60886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 31, + ACTIONS(6378), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60518,12 +60918,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [4501] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(507), 1, sym_comment, - ACTIONS(6239), 12, + ACTIONS(6384), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60535,8 +60936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 31, + ACTIONS(6382), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60568,12 +60968,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [4555] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(508), 1, sym_comment, - ACTIONS(6243), 12, + ACTIONS(6388), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60585,8 +60986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 31, + ACTIONS(6386), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60618,12 +61018,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [4609] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(509), 1, sym_comment, - ACTIONS(6247), 12, + ACTIONS(6392), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60635,8 +61036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 31, + ACTIONS(6390), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60668,12 +61068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [4663] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(510), 1, sym_comment, - ACTIONS(6251), 12, + ACTIONS(6396), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60685,8 +61086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 31, + ACTIONS(6394), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60718,12 +61118,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [4717] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(511), 1, sym_comment, - ACTIONS(6255), 12, + ACTIONS(6400), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60735,8 +61136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 31, + ACTIONS(6398), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60768,12 +61168,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [4771] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(512), 1, sym_comment, - ACTIONS(6259), 12, + ACTIONS(6404), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60785,8 +61186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 31, + ACTIONS(6402), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60818,12 +61218,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [4825] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(513), 1, sym_comment, - ACTIONS(6263), 12, + ACTIONS(6408), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60835,8 +61236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 31, + ACTIONS(6406), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60868,12 +61268,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [4879] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(514), 1, sym_comment, - ACTIONS(6267), 12, + ACTIONS(6412), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60885,8 +61286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 31, + ACTIONS(6410), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60918,12 +61318,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [4933] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(515), 1, sym_comment, - ACTIONS(6271), 12, + ACTIONS(6416), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60935,8 +61336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 31, + ACTIONS(6414), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60968,12 +61368,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [4987] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(516), 1, sym_comment, - ACTIONS(6275), 12, + ACTIONS(6420), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60985,8 +61386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 31, + ACTIONS(6418), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61018,12 +61418,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [5041] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(517), 1, sym_comment, - ACTIONS(6139), 12, + ACTIONS(6284), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61035,8 +61436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6137), 31, + ACTIONS(6282), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61068,12 +61468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [5095] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(518), 1, sym_comment, - ACTIONS(6279), 12, + ACTIONS(6424), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61085,8 +61486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 31, + ACTIONS(6422), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61118,12 +61518,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [5149] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(519), 1, sym_comment, - ACTIONS(6283), 12, + ACTIONS(6428), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61135,8 +61536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 31, + ACTIONS(6426), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61168,12 +61568,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [5203] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(520), 1, sym_comment, - ACTIONS(6287), 12, + ACTIONS(6432), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61185,8 +61586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 31, + ACTIONS(6430), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61218,12 +61618,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [5257] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(521), 1, sym_comment, - ACTIONS(6291), 12, + ACTIONS(6436), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61235,8 +61636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 31, + ACTIONS(6434), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61268,12 +61668,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [5311] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(522), 1, sym_comment, - ACTIONS(6295), 12, + ACTIONS(6440), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61285,8 +61686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 31, + ACTIONS(6438), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61318,12 +61718,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [5365] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(523), 1, sym_comment, - ACTIONS(6299), 12, + ACTIONS(6444), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61335,8 +61736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 31, + ACTIONS(6442), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61368,12 +61768,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [5419] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(524), 1, sym_comment, - ACTIONS(6303), 12, + ACTIONS(6448), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61385,8 +61786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 31, + ACTIONS(6446), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61418,12 +61818,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [5473] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(525), 1, sym_comment, - ACTIONS(6307), 12, + ACTIONS(6452), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61435,8 +61836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 31, + ACTIONS(6450), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61468,12 +61868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [5527] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(526), 1, sym_comment, - ACTIONS(6135), 12, + ACTIONS(6280), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61485,8 +61886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 31, + ACTIONS(6278), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61518,12 +61918,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [5581] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(527), 1, sym_comment, - ACTIONS(6311), 12, + ACTIONS(6456), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61535,8 +61936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 31, + ACTIONS(6454), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61568,12 +61968,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [5635] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(528), 1, sym_comment, - ACTIONS(6315), 12, + ACTIONS(6460), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61585,8 +61986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 31, + ACTIONS(6458), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61618,12 +62018,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [5689] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(529), 1, sym_comment, - ACTIONS(6319), 12, + ACTIONS(6464), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61635,8 +62036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 31, + ACTIONS(6462), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61668,12 +62068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [5743] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(530), 1, sym_comment, - ACTIONS(6171), 12, + ACTIONS(6316), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61685,8 +62086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 31, + ACTIONS(6314), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61718,12 +62118,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [5797] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(531), 1, sym_comment, - ACTIONS(6179), 12, + ACTIONS(6324), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61735,8 +62136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 31, + ACTIONS(6322), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61768,12 +62168,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [5851] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(532), 1, sym_comment, - ACTIONS(6187), 12, + ACTIONS(6332), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61785,8 +62186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 31, + ACTIONS(6330), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61818,12 +62218,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [5905] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(533), 1, sym_comment, - ACTIONS(6191), 12, + ACTIONS(6336), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61835,8 +62236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 31, + ACTIONS(6334), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61868,12 +62268,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [5959] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(534), 1, sym_comment, - ACTIONS(6211), 12, + ACTIONS(6356), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61885,8 +62286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 31, + ACTIONS(6354), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61918,12 +62318,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [6013] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(535), 1, sym_comment, - ACTIONS(6323), 12, + ACTIONS(6468), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61935,8 +62336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 31, + ACTIONS(6466), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61968,12 +62368,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [6067] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(536), 1, sym_comment, - ACTIONS(6231), 12, + ACTIONS(6376), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61985,8 +62386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 31, + ACTIONS(6374), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62018,12 +62418,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [6121] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(537), 1, sym_comment, - ACTIONS(6263), 12, + ACTIONS(6408), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62035,8 +62436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 31, + ACTIONS(6406), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62068,12 +62468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [6175] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(538), 1, sym_comment, - ACTIONS(6283), 12, + ACTIONS(6428), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62085,8 +62486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 31, + ACTIONS(6426), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62118,12 +62518,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [6229] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(539), 1, sym_comment, - ACTIONS(6311), 12, + ACTIONS(6456), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62135,8 +62536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 31, + ACTIONS(6454), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62168,12 +62568,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [6283] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(540), 1, sym_comment, - ACTIONS(6315), 12, + ACTIONS(6460), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62185,8 +62586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 31, + ACTIONS(6458), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62218,16 +62618,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [6337] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(541), 1, sym_comment, STATE(2026), 1, sym__directive_parameter, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62238,8 +62639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62270,12 +62670,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [6395] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(542), 1, sym_comment, - ACTIONS(6319), 12, + ACTIONS(6464), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62287,8 +62688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 31, + ACTIONS(6462), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62320,12 +62720,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [6449] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(543), 1, sym_comment, - ACTIONS(6329), 12, + ACTIONS(6474), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62337,8 +62738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 31, + ACTIONS(6472), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62370,12 +62770,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [6503] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(544), 1, sym_comment, - ACTIONS(6333), 12, + ACTIONS(6478), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62387,8 +62788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 31, + ACTIONS(6476), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62420,12 +62820,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [6557] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(545), 1, sym_comment, - ACTIONS(6337), 12, + ACTIONS(6482), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62437,8 +62838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 31, + ACTIONS(6480), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62470,12 +62870,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [6611] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(546), 1, sym_comment, - ACTIONS(6341), 12, + ACTIONS(6486), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62487,8 +62888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 31, + ACTIONS(6484), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62520,12 +62920,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [6665] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(547), 1, sym_comment, - ACTIONS(6345), 12, + ACTIONS(6490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62537,8 +62938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 31, + ACTIONS(6488), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62570,12 +62970,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [6719] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(548), 1, sym_comment, - ACTIONS(6349), 12, + ACTIONS(6494), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62587,8 +62988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 31, + ACTIONS(6492), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62620,12 +63020,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [6773] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(549), 1, sym_comment, - ACTIONS(6251), 12, + ACTIONS(6396), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62637,8 +63038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 31, + ACTIONS(6394), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62670,12 +63070,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [6827] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(550), 1, sym_comment, - ACTIONS(6353), 12, + ACTIONS(6498), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62687,8 +63088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 31, + ACTIONS(6496), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62720,12 +63120,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [6881] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(551), 1, sym_comment, - ACTIONS(6223), 12, + ACTIONS(6368), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62737,8 +63138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 31, + ACTIONS(6366), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62770,12 +63170,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [6935] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(552), 1, sym_comment, - ACTIONS(6307), 12, + ACTIONS(6452), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62787,8 +63188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 31, + ACTIONS(6450), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62820,12 +63220,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [6989] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(553), 1, sym_comment, - ACTIONS(6303), 12, + ACTIONS(6448), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62837,8 +63238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 31, + ACTIONS(6446), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62870,12 +63270,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [7043] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(554), 1, sym_comment, - ACTIONS(6299), 12, + ACTIONS(6444), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62887,8 +63288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 31, + ACTIONS(6442), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62920,12 +63320,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [7097] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(555), 1, sym_comment, - ACTIONS(6295), 12, + ACTIONS(6440), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62937,8 +63338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 31, + ACTIONS(6438), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62970,12 +63370,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [7151] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(556), 1, sym_comment, - ACTIONS(6291), 12, + ACTIONS(6436), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62987,8 +63388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 31, + ACTIONS(6434), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63020,12 +63420,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [7205] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(557), 1, sym_comment, - ACTIONS(6287), 12, + ACTIONS(6432), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63037,8 +63438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 31, + ACTIONS(6430), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63070,12 +63470,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [7259] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(558), 1, sym_comment, - ACTIONS(6279), 12, + ACTIONS(6424), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63087,8 +63488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 31, + ACTIONS(6422), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63120,12 +63520,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [7313] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(559), 1, sym_comment, - ACTIONS(6139), 12, + ACTIONS(6284), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63137,8 +63538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6137), 31, + ACTIONS(6282), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63170,12 +63570,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [7367] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(560), 1, sym_comment, - ACTIONS(6275), 12, + ACTIONS(6420), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63187,8 +63588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 31, + ACTIONS(6418), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63220,12 +63620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [7421] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(561), 1, sym_comment, - ACTIONS(6271), 12, + ACTIONS(6416), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63237,8 +63638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 31, + ACTIONS(6414), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63270,12 +63670,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [7475] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(562), 1, sym_comment, - ACTIONS(6267), 12, + ACTIONS(6412), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63287,8 +63688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 31, + ACTIONS(6410), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63320,12 +63720,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [7529] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(563), 1, sym_comment, - ACTIONS(6115), 12, + ACTIONS(6260), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63337,8 +63738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6113), 31, + ACTIONS(6258), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63370,12 +63770,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [7583] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(564), 1, sym_comment, - ACTIONS(6259), 12, + ACTIONS(6404), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63387,8 +63788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 31, + ACTIONS(6402), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63420,12 +63820,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [7637] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(565), 1, sym_comment, - ACTIONS(6195), 12, + ACTIONS(6340), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63437,8 +63838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6193), 31, + ACTIONS(6338), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63470,12 +63870,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [7691] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(566), 1, sym_comment, - ACTIONS(6255), 12, + ACTIONS(6400), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63487,8 +63888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 31, + ACTIONS(6398), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63520,12 +63920,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [7745] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(567), 1, sym_comment, - ACTIONS(6251), 12, + ACTIONS(6396), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63537,8 +63938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 31, + ACTIONS(6394), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63570,12 +63970,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [7799] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(568), 1, sym_comment, - ACTIONS(6247), 12, + ACTIONS(6392), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63587,8 +63988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 31, + ACTIONS(6390), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63620,12 +64020,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [7853] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(569), 1, sym_comment, - ACTIONS(6243), 12, + ACTIONS(6388), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63637,8 +64038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 31, + ACTIONS(6386), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63670,12 +64070,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [7907] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(570), 1, sym_comment, - ACTIONS(6239), 12, + ACTIONS(6384), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63687,8 +64088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 31, + ACTIONS(6382), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63720,12 +64120,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [7961] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(571), 1, sym_comment, - ACTIONS(6235), 12, + ACTIONS(6380), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63737,8 +64138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 31, + ACTIONS(6378), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63770,12 +64170,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [8015] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(572), 1, sym_comment, - ACTIONS(6227), 12, + ACTIONS(6372), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63787,8 +64188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 31, + ACTIONS(6370), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63820,16 +64220,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [8069] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6355), 1, + ACTIONS(6500), 1, anon_sym_LPAREN, STATE(573), 1, sym_comment, STATE(2014), 1, sym__directive_parameter, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63840,8 +64241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -63872,12 +64272,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [8127] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(574), 1, sym_comment, - ACTIONS(6167), 12, + ACTIONS(6312), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63889,8 +64290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 31, + ACTIONS(6310), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63922,12 +64322,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [8181] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(575), 1, sym_comment, - ACTIONS(6219), 12, + ACTIONS(6364), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63939,8 +64340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 31, + ACTIONS(6362), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63972,12 +64372,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [8235] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(576), 1, sym_comment, - ACTIONS(6215), 12, + ACTIONS(6360), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63989,8 +64390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 31, + ACTIONS(6358), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64022,12 +64422,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [8289] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(577), 1, sym_comment, - ACTIONS(6207), 12, + ACTIONS(6352), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64039,8 +64440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 31, + ACTIONS(6350), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64072,12 +64472,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [8343] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(578), 1, sym_comment, - ACTIONS(6203), 12, + ACTIONS(6348), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64089,8 +64490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 31, + ACTIONS(6346), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64122,12 +64522,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [8397] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(579), 1, sym_comment, - ACTIONS(6199), 12, + ACTIONS(6344), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64139,8 +64540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 31, + ACTIONS(6342), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64172,12 +64572,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [8451] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(580), 1, sym_comment, - ACTIONS(6195), 12, + ACTIONS(6340), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64189,8 +64590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6193), 31, + ACTIONS(6338), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64222,12 +64622,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [8505] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(581), 1, sym_comment, - ACTIONS(6115), 12, + ACTIONS(6260), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64239,8 +64640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6113), 31, + ACTIONS(6258), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64272,12 +64672,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [8559] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(582), 1, sym_comment, - ACTIONS(6183), 12, + ACTIONS(6328), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64289,8 +64690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 31, + ACTIONS(6326), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64322,12 +64722,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [8613] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(583), 1, sym_comment, - ACTIONS(6175), 12, + ACTIONS(6320), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64339,8 +64740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 31, + ACTIONS(6318), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64372,12 +64772,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [8667] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(584), 1, sym_comment, - ACTIONS(6247), 12, + ACTIONS(6392), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64389,8 +64790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 31, + ACTIONS(6390), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64422,12 +64822,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [8721] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(585), 1, sym_comment, - ACTIONS(6163), 12, + ACTIONS(6308), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64439,8 +64840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 31, + ACTIONS(6306), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64472,12 +64872,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [8775] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(586), 1, sym_comment, - ACTIONS(6159), 12, + ACTIONS(6304), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64489,8 +64890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 31, + ACTIONS(6302), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64522,12 +64922,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [8829] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(587), 1, sym_comment, - ACTIONS(6139), 12, + ACTIONS(6284), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64539,8 +64940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6137), 31, + ACTIONS(6282), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64572,12 +64972,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [8883] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(588), 1, sym_comment, - ACTIONS(6155), 12, + ACTIONS(6300), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64589,8 +64990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 31, + ACTIONS(6298), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64622,12 +65022,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [8937] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(589), 1, sym_comment, - ACTIONS(6151), 12, + ACTIONS(6296), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64639,8 +65040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 31, + ACTIONS(6294), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64672,12 +65072,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [8991] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(590), 1, sym_comment, - ACTIONS(6147), 12, + ACTIONS(6292), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64689,8 +65090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 31, + ACTIONS(6290), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64722,12 +65122,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [9045] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(591), 1, sym_comment, - ACTIONS(6143), 12, + ACTIONS(6288), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64739,8 +65140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 31, + ACTIONS(6286), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64772,12 +65172,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [9099] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(592), 1, sym_comment, - ACTIONS(6359), 12, + ACTIONS(6504), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64789,8 +65190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 31, + ACTIONS(6502), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64822,12 +65222,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [9153] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(593), 1, sym_comment, - ACTIONS(6353), 12, + ACTIONS(6498), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64839,8 +65240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 31, + ACTIONS(6496), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64872,12 +65272,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [9207] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(594), 1, sym_comment, - ACTIONS(6349), 12, + ACTIONS(6494), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64889,8 +65290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 31, + ACTIONS(6492), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64922,12 +65322,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [9261] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(595), 1, sym_comment, - ACTIONS(6345), 12, + ACTIONS(6490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64939,8 +65340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 31, + ACTIONS(6488), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64972,12 +65372,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [9315] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(596), 1, sym_comment, - ACTIONS(6341), 12, + ACTIONS(6486), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64989,8 +65390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 31, + ACTIONS(6484), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65022,12 +65422,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [9369] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(597), 1, sym_comment, - ACTIONS(6337), 12, + ACTIONS(6482), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65039,8 +65440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 31, + ACTIONS(6480), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65072,12 +65472,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [9423] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(598), 1, sym_comment, - ACTIONS(6333), 12, + ACTIONS(6478), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65089,8 +65490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 31, + ACTIONS(6476), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65122,12 +65522,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [9477] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(599), 1, sym_comment, - ACTIONS(6329), 12, + ACTIONS(6474), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65139,8 +65540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 31, + ACTIONS(6472), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65172,12 +65572,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [9531] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(600), 1, sym_comment, - ACTIONS(6323), 12, + ACTIONS(6468), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65189,8 +65590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 31, + ACTIONS(6466), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65222,12 +65622,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [9585] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(601), 1, sym_comment, - ACTIONS(6283), 12, + ACTIONS(6428), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65239,8 +65640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 31, + ACTIONS(6426), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65272,12 +65672,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [9639] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(602), 1, sym_comment, - ACTIONS(6263), 12, + ACTIONS(6408), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65289,8 +65690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 31, + ACTIONS(6406), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65322,12 +65722,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [9693] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(603), 1, sym_comment, - ACTIONS(6231), 12, + ACTIONS(6376), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65339,8 +65740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 31, + ACTIONS(6374), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65372,12 +65772,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [9747] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(604), 1, sym_comment, - ACTIONS(6211), 12, + ACTIONS(6356), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65389,8 +65790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 31, + ACTIONS(6354), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65422,12 +65822,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [9801] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(605), 1, sym_comment, - ACTIONS(6191), 12, + ACTIONS(6336), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65439,8 +65840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 31, + ACTIONS(6334), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65472,12 +65872,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [9855] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(606), 1, sym_comment, - ACTIONS(6363), 12, + ACTIONS(6508), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65489,8 +65890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 31, + ACTIONS(6506), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65522,12 +65922,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [9909] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(607), 1, sym_comment, - ACTIONS(6367), 12, + ACTIONS(6512), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65539,8 +65940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 31, + ACTIONS(6510), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65572,16 +65972,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [9963] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6369), 1, + ACTIONS(6514), 1, anon_sym_LPAREN, STATE(608), 1, sym_comment, STATE(1918), 1, sym__directive_parameter, - ACTIONS(6107), 12, + ACTIONS(6252), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65593,8 +65994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 29, + ACTIONS(6250), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65624,12 +66024,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [10021] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(609), 1, sym_comment, - ACTIONS(6187), 12, + ACTIONS(6332), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65641,8 +66042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 31, + ACTIONS(6330), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65674,12 +66074,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [10075] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(610), 1, sym_comment, - ACTIONS(6179), 12, + ACTIONS(6324), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65691,8 +66092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 31, + ACTIONS(6322), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65724,16 +66124,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [10129] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(611), 1, sym_comment, STATE(1544), 1, sym__directive_parameter, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65744,8 +66145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65776,12 +66176,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [10187] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(612), 1, sym_comment, - ACTIONS(6375), 12, + ACTIONS(6520), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65793,8 +66194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 31, + ACTIONS(6518), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65826,12 +66226,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [10241] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(613), 1, sym_comment, - ACTIONS(6363), 12, + ACTIONS(6508), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65843,8 +66244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 31, + ACTIONS(6506), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65876,12 +66276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [10295] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(614), 1, sym_comment, - ACTIONS(6367), 12, + ACTIONS(6512), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65893,8 +66294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 31, + ACTIONS(6510), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65926,16 +66326,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [10349] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6377), 1, + ACTIONS(6522), 1, anon_sym_LPAREN, STATE(615), 1, sym_comment, STATE(1859), 1, sym__directive_parameter, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65946,8 +66347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65978,12 +66378,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [10407] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(616), 1, sym_comment, - ACTIONS(6171), 12, + ACTIONS(6316), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65995,8 +66396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 31, + ACTIONS(6314), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66028,12 +66428,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [10461] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(617), 1, sym_comment, - ACTIONS(6363), 12, + ACTIONS(6508), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66045,8 +66446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 31, + ACTIONS(6506), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66078,12 +66478,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [10515] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(618), 1, sym_comment, - ACTIONS(6367), 12, + ACTIONS(6512), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66095,8 +66496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 31, + ACTIONS(6510), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66128,16 +66528,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [10569] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(619), 1, sym_comment, STATE(1800), 1, sym__directive_parameter, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66148,8 +66549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66180,12 +66580,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [10627] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(620), 1, sym_comment, - ACTIONS(6319), 12, + ACTIONS(6464), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66197,8 +66598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 31, + ACTIONS(6462), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66230,16 +66630,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [10681] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(621), 1, sym_comment, STATE(1101), 1, sym__directive_parameter, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66250,8 +66651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66282,12 +66682,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [10739] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(622), 1, sym_comment, - ACTIONS(6315), 12, + ACTIONS(6460), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66299,8 +66700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 31, + ACTIONS(6458), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66332,16 +66732,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [10793] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(623), 1, sym_comment, STATE(1682), 1, sym__directive_parameter, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66352,8 +66753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66384,12 +66784,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [10851] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(624), 1, sym_comment, - ACTIONS(6311), 12, + ACTIONS(6456), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66401,8 +66802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 31, + ACTIONS(6454), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66434,12 +66834,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [10905] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(625), 1, sym_comment, - ACTIONS(6375), 12, + ACTIONS(6520), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66451,8 +66852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 31, + ACTIONS(6518), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66484,16 +66884,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [10959] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(626), 1, sym_comment, STATE(1623), 1, sym__directive_parameter, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66504,8 +66905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66536,12 +66936,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [11017] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(627), 1, sym_comment, - ACTIONS(6139), 12, + ACTIONS(6284), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66553,8 +66954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6137), 31, + ACTIONS(6282), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66586,12 +66986,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [11071] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(628), 1, sym_comment, - ACTIONS(6307), 12, + ACTIONS(6452), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66603,8 +67004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 31, + ACTIONS(6450), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66636,12 +67036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [11125] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(629), 1, sym_comment, - ACTIONS(6375), 12, + ACTIONS(6520), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66653,8 +67054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 31, + ACTIONS(6518), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66686,16 +67086,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [11179] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(630), 1, sym_comment, STATE(1564), 1, sym__directive_parameter, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66706,8 +67107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66738,12 +67138,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [11237] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(631), 1, sym_comment, - ACTIONS(6303), 12, + ACTIONS(6448), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66755,8 +67156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 31, + ACTIONS(6446), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66788,12 +67188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [11291] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(632), 1, sym_comment, - ACTIONS(6115), 12, + ACTIONS(6260), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66805,8 +67206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6113), 31, + ACTIONS(6258), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66838,12 +67238,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [11345] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(633), 1, sym_comment, - ACTIONS(6299), 12, + ACTIONS(6444), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66855,8 +67256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 31, + ACTIONS(6442), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66888,12 +67288,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [11399] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(634), 1, sym_comment, - ACTIONS(6195), 12, + ACTIONS(6340), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66905,8 +67306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6193), 31, + ACTIONS(6338), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66938,12 +67338,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [11453] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(635), 1, sym_comment, - ACTIONS(6375), 12, + ACTIONS(6520), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66955,8 +67356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 31, + ACTIONS(6518), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66988,16 +67388,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [11507] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(636), 1, sym_comment, STATE(1505), 1, sym__directive_parameter, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67008,8 +67409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67040,12 +67440,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [11565] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(637), 1, sym_comment, - ACTIONS(6295), 12, + ACTIONS(6440), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67057,8 +67458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 31, + ACTIONS(6438), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67090,12 +67490,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [11619] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(638), 1, sym_comment, - ACTIONS(6375), 12, + ACTIONS(6520), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67107,8 +67508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 31, + ACTIONS(6518), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67140,16 +67540,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [11673] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(639), 1, sym_comment, STATE(1446), 1, sym__directive_parameter, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67160,8 +67561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67192,12 +67592,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [11731] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(640), 1, sym_comment, - ACTIONS(6291), 12, + ACTIONS(6436), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67209,8 +67610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 31, + ACTIONS(6434), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67242,12 +67642,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [11785] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(641), 1, sym_comment, - ACTIONS(6287), 12, + ACTIONS(6432), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67259,8 +67660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 31, + ACTIONS(6430), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67292,12 +67692,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [11839] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(642), 1, sym_comment, - ACTIONS(6283), 12, + ACTIONS(6428), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67309,8 +67710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 31, + ACTIONS(6426), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67342,12 +67742,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [11893] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(643), 1, sym_comment, - ACTIONS(6263), 12, + ACTIONS(6408), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67359,8 +67760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 31, + ACTIONS(6406), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67392,12 +67792,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [11947] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(644), 1, sym_comment, - ACTIONS(6279), 12, + ACTIONS(6424), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67409,8 +67810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 31, + ACTIONS(6422), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67442,12 +67842,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [12001] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(645), 1, sym_comment, - ACTIONS(6231), 12, + ACTIONS(6376), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67459,8 +67860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 31, + ACTIONS(6374), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67492,12 +67892,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [12055] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(646), 1, sym_comment, - ACTIONS(6211), 12, + ACTIONS(6356), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67509,8 +67910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 31, + ACTIONS(6354), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67542,12 +67942,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [12109] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(647), 1, sym_comment, - ACTIONS(6191), 12, + ACTIONS(6336), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67559,8 +67960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 31, + ACTIONS(6334), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67592,12 +67992,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [12163] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(648), 1, sym_comment, - ACTIONS(6187), 12, + ACTIONS(6332), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67609,8 +68010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 31, + ACTIONS(6330), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67642,12 +68042,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [12217] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(649), 1, sym_comment, - ACTIONS(6179), 12, + ACTIONS(6324), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67659,8 +68060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 31, + ACTIONS(6322), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67692,12 +68092,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [12271] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(650), 1, sym_comment, - ACTIONS(6171), 12, + ACTIONS(6316), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67709,8 +68110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 31, + ACTIONS(6314), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67742,12 +68142,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [12325] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(651), 1, sym_comment, - ACTIONS(6319), 12, + ACTIONS(6464), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67759,8 +68160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 31, + ACTIONS(6462), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67792,12 +68192,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [12379] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(652), 1, sym_comment, - ACTIONS(6315), 12, + ACTIONS(6460), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67809,8 +68210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 31, + ACTIONS(6458), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67842,12 +68242,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [12433] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(653), 1, sym_comment, - ACTIONS(6311), 12, + ACTIONS(6456), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67859,8 +68260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 31, + ACTIONS(6454), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67892,12 +68292,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [12487] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(654), 1, sym_comment, - ACTIONS(6135), 12, + ACTIONS(6280), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67909,8 +68310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 31, + ACTIONS(6278), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67942,12 +68342,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [12541] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(655), 1, sym_comment, - ACTIONS(6139), 12, + ACTIONS(6284), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67959,8 +68360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6137), 31, + ACTIONS(6282), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67992,12 +68392,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [12595] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(656), 1, sym_comment, - ACTIONS(6307), 12, + ACTIONS(6452), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68009,8 +68410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 31, + ACTIONS(6450), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68042,12 +68442,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [12649] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(657), 1, sym_comment, - ACTIONS(6139), 12, + ACTIONS(6284), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68059,8 +68460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6137), 31, + ACTIONS(6282), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68092,12 +68492,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [12703] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(658), 1, sym_comment, - ACTIONS(6303), 12, + ACTIONS(6448), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68109,8 +68510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 31, + ACTIONS(6446), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68142,12 +68542,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [12757] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(659), 1, sym_comment, - ACTIONS(6299), 12, + ACTIONS(6444), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68159,8 +68560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 31, + ACTIONS(6442), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68192,12 +68592,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [12811] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(660), 1, sym_comment, - ACTIONS(6295), 12, + ACTIONS(6440), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68209,8 +68610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 31, + ACTIONS(6438), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68242,12 +68642,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [12865] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(661), 1, sym_comment, - ACTIONS(6291), 12, + ACTIONS(6436), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68259,8 +68660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 31, + ACTIONS(6434), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68292,12 +68692,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [12919] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(662), 1, sym_comment, - ACTIONS(6287), 12, + ACTIONS(6432), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68309,8 +68710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 31, + ACTIONS(6430), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68342,12 +68742,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [12973] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(663), 1, sym_comment, - ACTIONS(6279), 12, + ACTIONS(6424), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68359,8 +68760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 31, + ACTIONS(6422), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68392,12 +68792,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [13027] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(664), 1, sym_comment, - ACTIONS(6275), 12, + ACTIONS(6420), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68409,8 +68810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 31, + ACTIONS(6418), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68442,12 +68842,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [13081] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(665), 1, sym_comment, - ACTIONS(6271), 12, + ACTIONS(6416), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68459,8 +68860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 31, + ACTIONS(6414), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68492,12 +68892,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [13135] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(666), 1, sym_comment, - ACTIONS(6267), 12, + ACTIONS(6412), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68509,8 +68910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 31, + ACTIONS(6410), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68542,12 +68942,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [13189] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(667), 1, sym_comment, - ACTIONS(6259), 12, + ACTIONS(6404), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68559,8 +68960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 31, + ACTIONS(6402), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68592,12 +68992,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [13243] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(668), 1, sym_comment, - ACTIONS(6255), 12, + ACTIONS(6400), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68609,8 +69010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 31, + ACTIONS(6398), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68642,12 +69042,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [13297] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(669), 1, sym_comment, - ACTIONS(6251), 12, + ACTIONS(6396), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68659,8 +69060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 31, + ACTIONS(6394), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68692,12 +69092,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [13351] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(670), 1, sym_comment, - ACTIONS(6247), 12, + ACTIONS(6392), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68709,8 +69110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 31, + ACTIONS(6390), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68742,12 +69142,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [13405] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(671), 1, sym_comment, - ACTIONS(6243), 12, + ACTIONS(6388), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68759,8 +69160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 31, + ACTIONS(6386), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68792,12 +69192,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [13459] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(672), 1, sym_comment, - ACTIONS(6239), 12, + ACTIONS(6384), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68809,8 +69210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 31, + ACTIONS(6382), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68842,12 +69242,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [13513] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(673), 1, sym_comment, - ACTIONS(6235), 12, + ACTIONS(6380), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68859,8 +69260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 31, + ACTIONS(6378), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68892,12 +69292,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [13567] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(674), 1, sym_comment, - ACTIONS(6227), 12, + ACTIONS(6372), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68909,8 +69310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 31, + ACTIONS(6370), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68942,12 +69342,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [13621] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(675), 1, sym_comment, - ACTIONS(6223), 12, + ACTIONS(6368), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68959,8 +69360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 31, + ACTIONS(6366), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68992,12 +69392,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [13675] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(676), 1, sym_comment, - ACTIONS(6219), 12, + ACTIONS(6364), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69009,8 +69410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 31, + ACTIONS(6362), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69042,12 +69442,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [13729] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(677), 1, sym_comment, - ACTIONS(6215), 12, + ACTIONS(6360), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69059,8 +69460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 31, + ACTIONS(6358), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69092,12 +69492,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [13783] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(678), 1, sym_comment, - ACTIONS(6275), 12, + ACTIONS(6420), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69109,8 +69510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 31, + ACTIONS(6418), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69142,16 +69542,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [13837] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(679), 1, sym_comment, STATE(1372), 1, sym__directive_parameter, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69162,8 +69563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69194,12 +69594,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [13895] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(680), 1, sym_comment, - ACTIONS(6375), 12, + ACTIONS(6520), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69211,8 +69612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 31, + ACTIONS(6518), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69244,12 +69644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [13949] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(681), 1, sym_comment, - ACTIONS(6207), 12, + ACTIONS(6352), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69261,8 +69662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 31, + ACTIONS(6350), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69294,12 +69694,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [14003] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(682), 1, sym_comment, - ACTIONS(6203), 12, + ACTIONS(6348), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69311,8 +69712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 31, + ACTIONS(6346), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69344,12 +69744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [14057] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(683), 1, sym_comment, - ACTIONS(6199), 12, + ACTIONS(6344), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69361,8 +69762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 31, + ACTIONS(6342), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69394,12 +69794,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [14111] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(684), 1, sym_comment, - ACTIONS(6183), 12, + ACTIONS(6328), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69411,8 +69812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 31, + ACTIONS(6326), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69444,12 +69844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [14165] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(685), 1, sym_comment, - ACTIONS(6175), 12, + ACTIONS(6320), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69461,8 +69862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 31, + ACTIONS(6318), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69494,12 +69894,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [14219] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(686), 1, sym_comment, - ACTIONS(6167), 12, + ACTIONS(6312), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69511,8 +69912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 31, + ACTIONS(6310), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69544,12 +69944,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [14273] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(687), 1, sym_comment, - ACTIONS(6163), 12, + ACTIONS(6308), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69561,8 +69962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 31, + ACTIONS(6306), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69594,12 +69994,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [14327] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(688), 1, sym_comment, - ACTIONS(6159), 12, + ACTIONS(6304), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69611,8 +70012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 31, + ACTIONS(6302), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69644,12 +70044,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [14381] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(689), 1, sym_comment, - ACTIONS(6155), 12, + ACTIONS(6300), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69661,8 +70062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 31, + ACTIONS(6298), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69694,12 +70094,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [14435] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(690), 1, sym_comment, - ACTIONS(6151), 12, + ACTIONS(6296), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69711,8 +70112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 31, + ACTIONS(6294), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69744,12 +70144,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [14489] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(691), 1, sym_comment, - ACTIONS(6147), 12, + ACTIONS(6292), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69761,8 +70162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 31, + ACTIONS(6290), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69794,12 +70194,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [14543] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(692), 1, sym_comment, - ACTIONS(6143), 12, + ACTIONS(6288), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69811,8 +70212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 31, + ACTIONS(6286), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69844,12 +70244,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [14597] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(693), 1, sym_comment, - ACTIONS(6359), 12, + ACTIONS(6504), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69861,8 +70262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 31, + ACTIONS(6502), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69894,12 +70294,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [14651] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(694), 1, sym_comment, - ACTIONS(6353), 12, + ACTIONS(6498), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69911,8 +70312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 31, + ACTIONS(6496), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69944,12 +70344,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [14705] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(695), 1, sym_comment, - ACTIONS(6349), 12, + ACTIONS(6494), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69961,8 +70362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 31, + ACTIONS(6492), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69994,12 +70394,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [14759] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(696), 1, sym_comment, - ACTIONS(6271), 12, + ACTIONS(6416), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70011,8 +70412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 31, + ACTIONS(6414), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70044,12 +70444,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [14813] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(697), 1, sym_comment, - ACTIONS(6345), 12, + ACTIONS(6490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70061,8 +70462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 31, + ACTIONS(6488), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70094,12 +70494,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [14867] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(698), 1, sym_comment, - ACTIONS(6341), 12, + ACTIONS(6486), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70111,8 +70512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 31, + ACTIONS(6484), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70144,12 +70544,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [14921] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(699), 1, sym_comment, - ACTIONS(6337), 12, + ACTIONS(6482), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70161,8 +70562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 31, + ACTIONS(6480), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70194,12 +70594,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [14975] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(700), 1, sym_comment, - ACTIONS(6115), 12, + ACTIONS(6260), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70211,8 +70612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6113), 31, + ACTIONS(6258), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70244,12 +70644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [15029] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(701), 1, sym_comment, - ACTIONS(6267), 12, + ACTIONS(6412), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70261,8 +70662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 31, + ACTIONS(6410), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70294,12 +70694,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [15083] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(702), 1, sym_comment, - ACTIONS(6195), 12, + ACTIONS(6340), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70311,8 +70712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6193), 31, + ACTIONS(6338), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70344,12 +70744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [15137] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(703), 1, sym_comment, - ACTIONS(6333), 12, + ACTIONS(6478), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70361,8 +70762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 31, + ACTIONS(6476), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70394,12 +70794,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [15191] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(704), 1, sym_comment, - ACTIONS(6329), 12, + ACTIONS(6474), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70411,8 +70812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 31, + ACTIONS(6472), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70444,12 +70844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [15245] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(705), 1, sym_comment, - ACTIONS(6375), 12, + ACTIONS(6520), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70461,8 +70862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 31, + ACTIONS(6518), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70494,12 +70894,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [15299] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(706), 1, sym_comment, - ACTIONS(6367), 12, + ACTIONS(6512), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70511,8 +70912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 31, + ACTIONS(6510), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70544,12 +70944,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [15353] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(707), 1, sym_comment, - ACTIONS(6259), 12, + ACTIONS(6404), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70561,8 +70962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 31, + ACTIONS(6402), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70594,12 +70994,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [15407] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(708), 1, sym_comment, - ACTIONS(6255), 12, + ACTIONS(6400), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70611,8 +71012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 31, + ACTIONS(6398), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70644,12 +71044,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [15461] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(709), 1, sym_comment, - ACTIONS(6251), 12, + ACTIONS(6396), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70661,8 +71062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 31, + ACTIONS(6394), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70694,12 +71094,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [15515] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(710), 1, sym_comment, - ACTIONS(6323), 12, + ACTIONS(6468), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70711,8 +71112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 31, + ACTIONS(6466), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70744,12 +71144,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [15569] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(711), 1, sym_comment, - ACTIONS(6283), 12, + ACTIONS(6428), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70761,8 +71162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 31, + ACTIONS(6426), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70794,12 +71194,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [15623] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(712), 1, sym_comment, - ACTIONS(6195), 12, + ACTIONS(6340), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70811,8 +71212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6193), 31, + ACTIONS(6338), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70844,12 +71244,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [15677] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(713), 1, sym_comment, - ACTIONS(6263), 12, + ACTIONS(6408), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70861,8 +71262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 31, + ACTIONS(6406), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70894,12 +71294,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [15731] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(714), 1, sym_comment, - ACTIONS(6231), 12, + ACTIONS(6376), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70911,8 +71312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 31, + ACTIONS(6374), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70944,12 +71344,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [15785] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(715), 1, sym_comment, - ACTIONS(6211), 12, + ACTIONS(6356), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70961,8 +71362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 31, + ACTIONS(6354), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70994,12 +71394,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [15839] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(716), 1, sym_comment, - ACTIONS(6191), 12, + ACTIONS(6336), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71011,8 +71412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 31, + ACTIONS(6334), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71044,12 +71444,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [15893] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(717), 1, sym_comment, - ACTIONS(6187), 12, + ACTIONS(6332), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71061,8 +71462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 31, + ACTIONS(6330), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71094,12 +71494,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [15947] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(718), 1, sym_comment, - ACTIONS(6179), 12, + ACTIONS(6324), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71111,8 +71512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 31, + ACTIONS(6322), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71144,12 +71544,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [16001] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(719), 1, sym_comment, - ACTIONS(6171), 12, + ACTIONS(6316), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71161,8 +71562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 31, + ACTIONS(6314), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71194,12 +71594,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [16055] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(720), 1, sym_comment, - ACTIONS(6319), 12, + ACTIONS(6464), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71211,8 +71612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 31, + ACTIONS(6462), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71244,12 +71644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [16109] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(721), 1, sym_comment, - ACTIONS(6315), 12, + ACTIONS(6460), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71261,8 +71662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 31, + ACTIONS(6458), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71294,12 +71694,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [16163] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(722), 1, sym_comment, - ACTIONS(6311), 12, + ACTIONS(6456), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71311,8 +71712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 31, + ACTIONS(6454), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71344,12 +71744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [16217] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(723), 1, sym_comment, - ACTIONS(6139), 12, + ACTIONS(6284), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71361,8 +71762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6137), 31, + ACTIONS(6282), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71394,12 +71794,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [16271] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(724), 1, sym_comment, - ACTIONS(6135), 12, + ACTIONS(6280), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71411,8 +71812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 31, + ACTIONS(6278), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71444,12 +71844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [16325] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(725), 1, sym_comment, - ACTIONS(6243), 12, + ACTIONS(6388), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71461,8 +71862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 31, + ACTIONS(6386), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71494,12 +71894,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [16379] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(726), 1, sym_comment, - ACTIONS(6307), 12, + ACTIONS(6452), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71511,8 +71912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 31, + ACTIONS(6450), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71544,12 +71944,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [16433] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(727), 1, sym_comment, - ACTIONS(6303), 12, + ACTIONS(6448), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71561,8 +71962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 31, + ACTIONS(6446), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71594,12 +71994,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [16487] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(728), 1, sym_comment, - ACTIONS(6299), 12, + ACTIONS(6444), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71611,8 +72012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 31, + ACTIONS(6442), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71644,12 +72044,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [16541] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(729), 1, sym_comment, - ACTIONS(6295), 12, + ACTIONS(6440), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71661,8 +72062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 31, + ACTIONS(6438), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71694,12 +72094,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [16595] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(730), 1, sym_comment, - ACTIONS(6291), 12, + ACTIONS(6436), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71711,8 +72112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 31, + ACTIONS(6434), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71744,12 +72144,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [16649] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(731), 1, sym_comment, - ACTIONS(6287), 12, + ACTIONS(6432), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71761,8 +72162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 31, + ACTIONS(6430), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71794,12 +72194,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [16703] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(732), 1, sym_comment, - ACTIONS(6279), 12, + ACTIONS(6424), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71811,8 +72212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 31, + ACTIONS(6422), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71844,12 +72244,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [16757] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(733), 1, sym_comment, - ACTIONS(6275), 12, + ACTIONS(6420), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71861,8 +72262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 31, + ACTIONS(6418), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71894,12 +72294,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [16811] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(734), 1, sym_comment, - ACTIONS(6271), 12, + ACTIONS(6416), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71911,8 +72312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 31, + ACTIONS(6414), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71944,12 +72344,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [16865] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(735), 1, sym_comment, - ACTIONS(6267), 12, + ACTIONS(6412), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71961,8 +72362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 31, + ACTIONS(6410), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71994,12 +72394,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [16919] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(736), 1, sym_comment, - ACTIONS(6259), 12, + ACTIONS(6404), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72011,8 +72412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 31, + ACTIONS(6402), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72044,12 +72444,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [16973] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(737), 1, sym_comment, - ACTIONS(6255), 12, + ACTIONS(6400), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72061,8 +72462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 31, + ACTIONS(6398), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72094,12 +72494,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [17027] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(738), 1, sym_comment, - ACTIONS(6251), 12, + ACTIONS(6396), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72111,8 +72512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 31, + ACTIONS(6394), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72144,12 +72544,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [17081] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(739), 1, sym_comment, - ACTIONS(6247), 12, + ACTIONS(6392), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72161,8 +72562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 31, + ACTIONS(6390), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72194,12 +72594,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [17135] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(740), 1, sym_comment, - ACTIONS(6243), 12, + ACTIONS(6388), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72211,8 +72612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 31, + ACTIONS(6386), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72244,12 +72644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [17189] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(741), 1, sym_comment, - ACTIONS(6363), 12, + ACTIONS(6508), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72261,8 +72662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 31, + ACTIONS(6506), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72294,12 +72694,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [17243] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(742), 1, sym_comment, - ACTIONS(6239), 12, + ACTIONS(6384), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72311,8 +72712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 31, + ACTIONS(6382), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72344,12 +72744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [17297] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(743), 1, sym_comment, - ACTIONS(6235), 12, + ACTIONS(6380), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72361,8 +72762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 31, + ACTIONS(6378), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72394,12 +72794,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [17351] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(744), 1, sym_comment, - ACTIONS(6227), 12, + ACTIONS(6372), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72411,8 +72812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 31, + ACTIONS(6370), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72444,12 +72844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [17405] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(745), 1, sym_comment, - ACTIONS(6223), 12, + ACTIONS(6368), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72461,8 +72862,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, + ACTIONS(6366), 32, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATenderror, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, aux_sym_text_token3, - ACTIONS(6221), 31, + [17459] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(746), 1, + sym_comment, + ACTIONS(6384), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(6382), 32, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATendauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_text_token3, + [17513] = 6, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(6540), 1, + anon_sym_LPAREN, + STATE(747), 1, + sym_comment, + STATE(1228), 1, + sym__directive_parameter, + ACTIONS(6252), 10, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(6250), 31, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_text_token3, + [17571] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(748), 1, + sym_comment, + ACTIONS(6520), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(6518), 32, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATendproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_text_token3, + [17625] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(749), 1, + sym_comment, + ACTIONS(6364), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(6362), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72494,214 +73096,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [17459] = 4, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(746), 1, - sym_comment, - ACTIONS(6239), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - ACTIONS(6237), 31, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATendauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [17513] = 6, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, - anon_sym_LPAREN, - STATE(747), 1, - sym_comment, - STATE(1228), 1, - sym__directive_parameter, - ACTIONS(6107), 11, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATunless, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym_text_token1, - aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [17571] = 4, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(748), 1, - sym_comment, - ACTIONS(6375), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym_text_token1, - aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 31, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATendproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [17625] = 4, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(749), 1, - sym_comment, - ACTIONS(6219), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym_text_token1, - aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 31, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATenderror, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, [17679] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(750), 1, sym_comment, - ACTIONS(6215), 12, + ACTIONS(6360), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72713,8 +73114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 31, + ACTIONS(6358), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72746,12 +73146,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [17733] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(751), 1, sym_comment, - ACTIONS(6207), 12, + ACTIONS(6352), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72763,8 +73164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 31, + ACTIONS(6350), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72796,12 +73196,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [17787] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(752), 1, sym_comment, - ACTIONS(6203), 12, + ACTIONS(6348), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72813,8 +73214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 31, + ACTIONS(6346), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72846,12 +73246,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [17841] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(753), 1, sym_comment, - ACTIONS(6199), 12, + ACTIONS(6344), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72863,8 +73264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 31, + ACTIONS(6342), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72896,12 +73296,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [17895] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(754), 1, sym_comment, - ACTIONS(6183), 12, + ACTIONS(6328), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72913,8 +73314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 31, + ACTIONS(6326), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72946,12 +73346,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [17949] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(755), 1, sym_comment, - ACTIONS(6175), 12, + ACTIONS(6320), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72963,8 +73364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 31, + ACTIONS(6318), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72996,12 +73396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [18003] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(756), 1, sym_comment, - ACTIONS(6167), 12, + ACTIONS(6312), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73013,8 +73414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 31, + ACTIONS(6310), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73046,12 +73446,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [18057] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(757), 1, sym_comment, - ACTIONS(6163), 12, + ACTIONS(6308), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73063,8 +73464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 31, + ACTIONS(6306), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73096,12 +73496,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [18111] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(758), 1, sym_comment, - ACTIONS(6159), 12, + ACTIONS(6304), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73113,8 +73514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 31, + ACTIONS(6302), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73146,12 +73546,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [18165] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(759), 1, sym_comment, - ACTIONS(6155), 12, + ACTIONS(6300), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73163,8 +73564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 31, + ACTIONS(6298), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73196,12 +73596,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [18219] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(760), 1, sym_comment, - ACTIONS(6151), 12, + ACTIONS(6296), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73213,8 +73614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 31, + ACTIONS(6294), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73246,12 +73646,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [18273] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(761), 1, sym_comment, - ACTIONS(6147), 12, + ACTIONS(6292), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73263,8 +73664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 31, + ACTIONS(6290), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73296,12 +73696,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [18327] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(762), 1, sym_comment, - ACTIONS(6143), 12, + ACTIONS(6288), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73313,8 +73714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 31, + ACTIONS(6286), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73346,12 +73746,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [18381] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(763), 1, sym_comment, - ACTIONS(6359), 12, + ACTIONS(6504), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73363,8 +73764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 31, + ACTIONS(6502), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73396,12 +73796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [18435] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(764), 1, sym_comment, - ACTIONS(6235), 12, + ACTIONS(6380), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73413,8 +73814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 31, + ACTIONS(6378), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73446,12 +73846,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [18489] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(765), 1, sym_comment, - ACTIONS(6353), 12, + ACTIONS(6498), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73463,8 +73864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 31, + ACTIONS(6496), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73496,12 +73896,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [18543] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(766), 1, sym_comment, - ACTIONS(6349), 12, + ACTIONS(6494), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73513,8 +73914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 31, + ACTIONS(6492), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73546,12 +73946,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [18597] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(767), 1, sym_comment, - ACTIONS(6345), 12, + ACTIONS(6490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73563,8 +73964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 31, + ACTIONS(6488), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73596,12 +73996,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [18651] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(768), 1, sym_comment, - ACTIONS(6115), 12, + ACTIONS(6260), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73613,8 +74014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6113), 31, + ACTIONS(6258), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73646,12 +74046,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [18705] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(769), 1, sym_comment, - ACTIONS(6227), 12, + ACTIONS(6372), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73663,8 +74064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 31, + ACTIONS(6370), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73696,12 +74096,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [18759] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(770), 1, sym_comment, - ACTIONS(6341), 12, + ACTIONS(6486), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73713,8 +74114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 31, + ACTIONS(6484), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73746,12 +74146,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [18813] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(771), 1, sym_comment, - ACTIONS(6337), 12, + ACTIONS(6482), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73763,8 +74164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 31, + ACTIONS(6480), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73796,12 +74196,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [18867] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(772), 1, sym_comment, - ACTIONS(6333), 12, + ACTIONS(6478), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73813,8 +74214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 31, + ACTIONS(6476), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73846,12 +74246,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [18921] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(773), 1, sym_comment, - ACTIONS(6367), 12, + ACTIONS(6512), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73863,8 +74264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 31, + ACTIONS(6510), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73896,12 +74296,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [18975] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(774), 1, sym_comment, - ACTIONS(6329), 12, + ACTIONS(6474), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73913,8 +74314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 31, + ACTIONS(6472), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73946,12 +74346,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [19029] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(775), 1, sym_comment, - ACTIONS(6375), 12, + ACTIONS(6520), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73963,8 +74364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 31, + ACTIONS(6518), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73996,12 +74396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [19083] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(776), 1, sym_comment, - ACTIONS(6223), 12, + ACTIONS(6368), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74013,8 +74414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 31, + ACTIONS(6366), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74046,12 +74446,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [19137] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(777), 1, sym_comment, - ACTIONS(6219), 12, + ACTIONS(6364), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74063,8 +74464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 31, + ACTIONS(6362), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74096,12 +74496,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [19191] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(778), 1, sym_comment, - ACTIONS(6215), 12, + ACTIONS(6360), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74113,8 +74514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 31, + ACTIONS(6358), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74146,12 +74546,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [19245] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(779), 1, sym_comment, - ACTIONS(6207), 12, + ACTIONS(6352), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74163,8 +74564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 31, + ACTIONS(6350), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74196,12 +74596,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [19299] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(780), 1, sym_comment, - ACTIONS(6323), 12, + ACTIONS(6468), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74213,8 +74614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 31, + ACTIONS(6466), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74246,12 +74646,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [19353] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(781), 1, sym_comment, - ACTIONS(6283), 12, + ACTIONS(6428), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74263,8 +74664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 31, + ACTIONS(6426), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74296,12 +74696,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [19407] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(782), 1, sym_comment, - ACTIONS(6263), 12, + ACTIONS(6408), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74313,8 +74714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 31, + ACTIONS(6406), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74346,12 +74746,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [19461] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(783), 1, sym_comment, - ACTIONS(6231), 12, + ACTIONS(6376), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74363,8 +74764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 31, + ACTIONS(6374), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74396,12 +74796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [19515] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(784), 1, sym_comment, - ACTIONS(6211), 12, + ACTIONS(6356), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74413,8 +74814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 31, + ACTIONS(6354), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74446,12 +74846,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [19569] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(785), 1, sym_comment, - ACTIONS(6191), 12, + ACTIONS(6336), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74463,8 +74864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 31, + ACTIONS(6334), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74496,12 +74896,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [19623] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(786), 1, sym_comment, - ACTIONS(6187), 12, + ACTIONS(6332), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74513,8 +74914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 31, + ACTIONS(6330), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74546,12 +74946,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [19677] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(787), 1, sym_comment, - ACTIONS(6179), 12, + ACTIONS(6324), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74563,8 +74964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 31, + ACTIONS(6322), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74596,12 +74996,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [19731] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(788), 1, sym_comment, - ACTIONS(6171), 12, + ACTIONS(6316), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74613,8 +75014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 31, + ACTIONS(6314), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74646,12 +75046,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [19785] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(789), 1, sym_comment, - ACTIONS(6319), 12, + ACTIONS(6464), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74663,8 +75064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 31, + ACTIONS(6462), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74696,12 +75096,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [19839] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(790), 1, sym_comment, - ACTIONS(6359), 12, + ACTIONS(6504), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74713,8 +75114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 31, + ACTIONS(6502), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74746,12 +75146,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [19893] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(791), 1, sym_comment, - ACTIONS(6315), 12, + ACTIONS(6460), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74763,8 +75164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 31, + ACTIONS(6458), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74796,12 +75196,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [19947] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(792), 1, sym_comment, - ACTIONS(6311), 12, + ACTIONS(6456), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74813,8 +75214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 31, + ACTIONS(6454), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74846,12 +75246,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [20001] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(793), 1, sym_comment, - ACTIONS(6135), 12, + ACTIONS(6280), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74863,8 +75264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 31, + ACTIONS(6278), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74896,12 +75296,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [20055] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(794), 1, sym_comment, - ACTIONS(6307), 12, + ACTIONS(6452), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74913,8 +75314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 31, + ACTIONS(6450), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74946,12 +75346,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [20109] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(795), 1, sym_comment, - ACTIONS(6303), 12, + ACTIONS(6448), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74963,8 +75364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 31, + ACTIONS(6446), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74996,12 +75396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [20163] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(796), 1, sym_comment, - ACTIONS(6299), 12, + ACTIONS(6444), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75013,8 +75414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 31, + ACTIONS(6442), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75046,12 +75446,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [20217] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(797), 1, sym_comment, - ACTIONS(6295), 12, + ACTIONS(6440), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75063,8 +75464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 31, + ACTIONS(6438), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75096,12 +75496,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [20271] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(798), 1, sym_comment, - ACTIONS(6291), 12, + ACTIONS(6436), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75113,8 +75514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 31, + ACTIONS(6434), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75146,12 +75546,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [20325] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(799), 1, sym_comment, - ACTIONS(6287), 12, + ACTIONS(6432), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75163,8 +75564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 31, + ACTIONS(6430), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75196,12 +75596,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [20379] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(800), 1, sym_comment, - ACTIONS(6279), 12, + ACTIONS(6424), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75213,8 +75614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 31, + ACTIONS(6422), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75246,12 +75646,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [20433] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(801), 1, sym_comment, - ACTIONS(6275), 12, + ACTIONS(6420), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75263,8 +75664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 31, + ACTIONS(6418), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75296,12 +75696,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [20487] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(802), 1, sym_comment, - ACTIONS(6271), 12, + ACTIONS(6416), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75313,8 +75714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 31, + ACTIONS(6414), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75346,12 +75746,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [20541] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(803), 1, sym_comment, - ACTIONS(6267), 12, + ACTIONS(6412), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75363,8 +75764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 31, + ACTIONS(6410), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75396,12 +75796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [20595] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(804), 1, sym_comment, - ACTIONS(6259), 12, + ACTIONS(6404), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75413,8 +75814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 31, + ACTIONS(6402), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75446,12 +75846,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [20649] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(805), 1, sym_comment, - ACTIONS(6255), 12, + ACTIONS(6400), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75463,8 +75864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 31, + ACTIONS(6398), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75496,12 +75896,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [20703] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(806), 1, sym_comment, - ACTIONS(6251), 12, + ACTIONS(6396), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75513,8 +75914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 31, + ACTIONS(6394), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75546,12 +75946,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [20757] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(807), 1, sym_comment, - ACTIONS(6363), 12, + ACTIONS(6508), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75563,8 +75964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 31, + ACTIONS(6506), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75596,12 +75996,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [20811] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(808), 1, sym_comment, - ACTIONS(6247), 12, + ACTIONS(6392), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75613,8 +76014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 31, + ACTIONS(6390), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75646,12 +76046,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [20865] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(809), 1, sym_comment, - ACTIONS(6243), 12, + ACTIONS(6388), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75663,8 +76064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 31, + ACTIONS(6386), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75696,12 +76096,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [20919] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(810), 1, sym_comment, - ACTIONS(6239), 12, + ACTIONS(6384), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75713,8 +76114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 31, + ACTIONS(6382), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75746,12 +76146,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [20973] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(811), 1, sym_comment, - ACTIONS(6235), 12, + ACTIONS(6380), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75763,8 +76164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 31, + ACTIONS(6378), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75796,12 +76196,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [21027] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(812), 1, sym_comment, - ACTIONS(6203), 12, + ACTIONS(6348), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75813,8 +76214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 31, + ACTIONS(6346), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75846,16 +76246,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [21081] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(813), 1, sym_comment, STATE(1257), 1, sym__directive_parameter, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75866,8 +76267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75898,12 +76298,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [21139] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(814), 1, sym_comment, - ACTIONS(6227), 12, + ACTIONS(6372), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75915,8 +76316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 31, + ACTIONS(6370), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75948,12 +76348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [21193] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(815), 1, sym_comment, - ACTIONS(6223), 12, + ACTIONS(6368), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75965,8 +76366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 31, + ACTIONS(6366), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75998,12 +76398,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [21247] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(816), 1, sym_comment, - ACTIONS(6219), 12, + ACTIONS(6364), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76015,8 +76416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 31, + ACTIONS(6362), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76048,12 +76448,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [21301] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(817), 1, sym_comment, - ACTIONS(6215), 12, + ACTIONS(6360), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76065,8 +76466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 31, + ACTIONS(6358), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76098,12 +76498,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [21355] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(818), 1, sym_comment, - ACTIONS(6207), 12, + ACTIONS(6352), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76115,8 +76516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 31, + ACTIONS(6350), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76148,12 +76548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [21409] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(819), 1, sym_comment, - ACTIONS(6203), 12, + ACTIONS(6348), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76165,8 +76566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 31, + ACTIONS(6346), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76198,12 +76598,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [21463] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(820), 1, sym_comment, - ACTIONS(6199), 12, + ACTIONS(6344), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76215,8 +76616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 31, + ACTIONS(6342), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76248,12 +76648,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [21517] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(821), 1, sym_comment, - ACTIONS(6183), 12, + ACTIONS(6328), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76265,8 +76666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 31, + ACTIONS(6326), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76298,12 +76698,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [21571] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(822), 1, sym_comment, - ACTIONS(6175), 12, + ACTIONS(6320), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76315,8 +76716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 31, + ACTIONS(6318), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76348,12 +76748,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [21625] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(823), 1, sym_comment, - ACTIONS(6167), 12, + ACTIONS(6312), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76365,8 +76766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 31, + ACTIONS(6310), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76398,12 +76798,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [21679] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(824), 1, sym_comment, - ACTIONS(6163), 12, + ACTIONS(6308), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76415,8 +76816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 31, + ACTIONS(6306), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76448,12 +76848,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [21733] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(825), 1, sym_comment, - ACTIONS(6159), 12, + ACTIONS(6304), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76465,8 +76866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 31, + ACTIONS(6302), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76498,12 +76898,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [21787] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(826), 1, sym_comment, - ACTIONS(6155), 12, + ACTIONS(6300), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76515,8 +76916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 31, + ACTIONS(6298), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76548,12 +76948,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [21841] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(827), 1, sym_comment, - ACTIONS(6151), 12, + ACTIONS(6296), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76565,8 +76966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 31, + ACTIONS(6294), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76598,12 +76998,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [21895] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(828), 1, sym_comment, - ACTIONS(6147), 12, + ACTIONS(6292), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76615,8 +77016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 31, + ACTIONS(6290), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76648,12 +77048,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [21949] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(829), 1, sym_comment, - ACTIONS(6143), 12, + ACTIONS(6288), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76665,8 +77066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 31, + ACTIONS(6286), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76698,12 +77098,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [22003] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(830), 1, sym_comment, - ACTIONS(6199), 12, + ACTIONS(6344), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76715,8 +77116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 31, + ACTIONS(6342), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76748,12 +77148,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [22057] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(831), 1, sym_comment, - ACTIONS(6359), 12, + ACTIONS(6504), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76765,8 +77166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 31, + ACTIONS(6502), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76798,12 +77198,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [22111] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(832), 1, sym_comment, - ACTIONS(6353), 12, + ACTIONS(6498), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76815,8 +77216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 31, + ACTIONS(6496), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76848,12 +77248,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [22165] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(833), 1, sym_comment, - ACTIONS(6349), 12, + ACTIONS(6494), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76865,8 +77266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 31, + ACTIONS(6492), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76898,12 +77298,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [22219] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(834), 1, sym_comment, - ACTIONS(6345), 12, + ACTIONS(6490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76915,8 +77316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 31, + ACTIONS(6488), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76948,12 +77348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [22273] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(835), 1, sym_comment, - ACTIONS(6341), 12, + ACTIONS(6486), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76965,8 +77366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 31, + ACTIONS(6484), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76998,12 +77398,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [22327] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(836), 1, sym_comment, - ACTIONS(6337), 12, + ACTIONS(6482), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77015,8 +77416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 31, + ACTIONS(6480), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77048,12 +77448,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [22381] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(837), 1, sym_comment, - ACTIONS(6367), 12, + ACTIONS(6512), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77065,8 +77466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 31, + ACTIONS(6510), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77098,12 +77498,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [22435] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(838), 1, sym_comment, - ACTIONS(6333), 12, + ACTIONS(6478), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77115,8 +77516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 31, + ACTIONS(6476), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77148,12 +77548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [22489] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(839), 1, sym_comment, - ACTIONS(6329), 12, + ACTIONS(6474), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77165,8 +77566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 31, + ACTIONS(6472), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77198,12 +77598,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [22543] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(840), 1, sym_comment, - ACTIONS(6333), 12, + ACTIONS(6478), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77215,8 +77616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 31, + ACTIONS(6476), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77248,12 +77648,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [22597] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(841), 1, sym_comment, - ACTIONS(6375), 12, + ACTIONS(6520), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77265,8 +77666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 31, + ACTIONS(6518), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77298,12 +77698,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [22651] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(842), 1, sym_comment, - ACTIONS(6115), 12, + ACTIONS(6260), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77315,8 +77716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6113), 31, + ACTIONS(6258), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77348,12 +77748,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [22705] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(843), 1, sym_comment, - ACTIONS(6183), 12, + ACTIONS(6328), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77365,8 +77766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 31, + ACTIONS(6326), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77398,12 +77798,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [22759] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(844), 1, sym_comment, - ACTIONS(6175), 12, + ACTIONS(6320), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77415,8 +77816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 31, + ACTIONS(6318), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77448,12 +77848,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [22813] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(845), 1, sym_comment, - ACTIONS(6323), 12, + ACTIONS(6468), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77465,8 +77866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 31, + ACTIONS(6466), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77498,12 +77898,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [22867] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(846), 1, sym_comment, - ACTIONS(6283), 12, + ACTIONS(6428), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77515,8 +77916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 31, + ACTIONS(6426), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77548,12 +77948,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [22921] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(847), 1, sym_comment, - ACTIONS(6263), 12, + ACTIONS(6408), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77565,8 +77966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 31, + ACTIONS(6406), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77598,12 +77998,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [22975] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(848), 1, sym_comment, - ACTIONS(6231), 12, + ACTIONS(6376), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77615,8 +78016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 31, + ACTIONS(6374), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77648,12 +78048,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [23029] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(849), 1, sym_comment, - ACTIONS(6167), 12, + ACTIONS(6312), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77665,8 +78066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 31, + ACTIONS(6310), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77698,12 +78098,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [23083] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(850), 1, sym_comment, - ACTIONS(6211), 12, + ACTIONS(6356), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77715,8 +78116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 31, + ACTIONS(6354), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77748,12 +78148,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [23137] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(851), 1, sym_comment, - ACTIONS(6191), 12, + ACTIONS(6336), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77765,8 +78166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 31, + ACTIONS(6334), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77798,12 +78198,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [23191] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(852), 1, sym_comment, - ACTIONS(6187), 12, + ACTIONS(6332), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77815,8 +78216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 31, + ACTIONS(6330), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77848,12 +78248,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [23245] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(853), 1, sym_comment, - ACTIONS(6179), 12, + ACTIONS(6324), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77865,8 +78266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 31, + ACTIONS(6322), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77898,12 +78298,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [23299] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(854), 1, sym_comment, - ACTIONS(6171), 12, + ACTIONS(6316), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77915,8 +78316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 31, + ACTIONS(6314), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77948,12 +78348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [23353] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(855), 1, sym_comment, - ACTIONS(6319), 12, + ACTIONS(6464), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77965,8 +78366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 31, + ACTIONS(6462), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77998,12 +78398,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [23407] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(856), 1, sym_comment, - ACTIONS(6315), 12, + ACTIONS(6460), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78015,8 +78416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 31, + ACTIONS(6458), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78048,12 +78448,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [23461] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(857), 1, sym_comment, - ACTIONS(6311), 12, + ACTIONS(6456), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78065,8 +78466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 31, + ACTIONS(6454), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78098,12 +78498,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [23515] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(858), 1, sym_comment, - ACTIONS(6135), 12, + ACTIONS(6280), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78115,8 +78516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 31, + ACTIONS(6278), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78148,12 +78548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [23569] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(859), 1, sym_comment, - ACTIONS(6307), 12, + ACTIONS(6452), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78165,8 +78566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 31, + ACTIONS(6450), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78198,12 +78598,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [23623] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(860), 1, sym_comment, - ACTIONS(6303), 12, + ACTIONS(6448), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78215,8 +78616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 31, + ACTIONS(6446), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78248,12 +78648,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [23677] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(861), 1, sym_comment, - ACTIONS(6299), 12, + ACTIONS(6444), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78265,8 +78666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 31, + ACTIONS(6442), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78298,12 +78698,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [23731] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(862), 1, sym_comment, - ACTIONS(6295), 12, + ACTIONS(6440), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78315,8 +78716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 31, + ACTIONS(6438), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78348,12 +78748,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [23785] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(863), 1, sym_comment, - ACTIONS(6291), 12, + ACTIONS(6436), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78365,8 +78766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 31, + ACTIONS(6434), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78398,12 +78798,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [23839] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(864), 1, sym_comment, - ACTIONS(6287), 12, + ACTIONS(6432), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78415,8 +78816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 31, + ACTIONS(6430), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78448,12 +78848,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [23893] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(865), 1, sym_comment, - ACTIONS(6279), 12, + ACTIONS(6424), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78465,8 +78866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 31, + ACTIONS(6422), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78498,12 +78898,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [23947] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(866), 1, sym_comment, - ACTIONS(6275), 12, + ACTIONS(6420), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78515,8 +78916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 31, + ACTIONS(6418), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78548,12 +78948,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [24001] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(867), 1, sym_comment, - ACTIONS(6271), 12, + ACTIONS(6416), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78565,8 +78966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 31, + ACTIONS(6414), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78598,12 +78998,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [24055] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(868), 1, sym_comment, - ACTIONS(6267), 12, + ACTIONS(6412), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78615,8 +79016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 31, + ACTIONS(6410), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78648,12 +79048,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [24109] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(869), 1, sym_comment, - ACTIONS(6259), 12, + ACTIONS(6404), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78665,8 +79066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 31, + ACTIONS(6402), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78698,12 +79098,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [24163] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(870), 1, sym_comment, - ACTIONS(6363), 12, + ACTIONS(6508), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78715,8 +79116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 31, + ACTIONS(6506), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78748,12 +79148,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [24217] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(871), 1, sym_comment, - ACTIONS(6255), 12, + ACTIONS(6400), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78765,8 +79166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 31, + ACTIONS(6398), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78798,12 +79198,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [24271] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(872), 1, sym_comment, - ACTIONS(6251), 12, + ACTIONS(6396), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78815,8 +79216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 31, + ACTIONS(6394), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78848,12 +79248,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [24325] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(873), 1, sym_comment, - ACTIONS(6247), 12, + ACTIONS(6392), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78865,8 +79266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 31, + ACTIONS(6390), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78898,12 +79298,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [24379] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(874), 1, sym_comment, - ACTIONS(6243), 12, + ACTIONS(6388), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78915,8 +79316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 31, + ACTIONS(6386), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78948,12 +79348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [24433] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(875), 1, sym_comment, - ACTIONS(6163), 12, + ACTIONS(6308), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78965,8 +79366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 31, + ACTIONS(6306), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78998,16 +79398,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [24487] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(876), 1, sym_comment, STATE(1200), 1, sym__directive_parameter, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79018,8 +79419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79050,12 +79450,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [24545] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(877), 1, sym_comment, - ACTIONS(6239), 12, + ACTIONS(6384), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79067,8 +79468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 31, + ACTIONS(6382), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79100,12 +79500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [24599] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(878), 1, sym_comment, - ACTIONS(6235), 12, + ACTIONS(6380), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79117,8 +79518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 31, + ACTIONS(6378), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79150,12 +79550,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [24653] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(879), 1, sym_comment, - ACTIONS(6159), 12, + ACTIONS(6304), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79167,8 +79568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 31, + ACTIONS(6302), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79200,12 +79600,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [24707] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(880), 1, sym_comment, - ACTIONS(6227), 12, + ACTIONS(6372), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79217,8 +79618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 31, + ACTIONS(6370), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79250,12 +79650,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [24761] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(881), 1, sym_comment, - ACTIONS(6223), 12, + ACTIONS(6368), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79267,8 +79668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 31, + ACTIONS(6366), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79300,12 +79700,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [24815] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(882), 1, sym_comment, - ACTIONS(6219), 12, + ACTIONS(6364), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79317,8 +79718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 31, + ACTIONS(6362), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79350,12 +79750,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [24869] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(883), 1, sym_comment, - ACTIONS(6215), 12, + ACTIONS(6360), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79367,8 +79768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 31, + ACTIONS(6358), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79400,12 +79800,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [24923] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(884), 1, sym_comment, - ACTIONS(6155), 12, + ACTIONS(6300), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79417,8 +79818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 31, + ACTIONS(6298), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79450,12 +79850,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [24977] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(885), 1, sym_comment, - ACTIONS(6207), 12, + ACTIONS(6352), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79467,8 +79868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 31, + ACTIONS(6350), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79500,12 +79900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [25031] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(886), 1, sym_comment, - ACTIONS(6203), 12, + ACTIONS(6348), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79517,8 +79918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 31, + ACTIONS(6346), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79550,12 +79950,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [25085] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(887), 1, sym_comment, - ACTIONS(6199), 12, + ACTIONS(6344), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79567,8 +79968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 31, + ACTIONS(6342), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79600,12 +80000,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [25139] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(888), 1, sym_comment, - ACTIONS(6183), 12, + ACTIONS(6328), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79617,8 +80018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 31, + ACTIONS(6326), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79650,12 +80050,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [25193] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(889), 1, sym_comment, - ACTIONS(6175), 12, + ACTIONS(6320), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79667,8 +80068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 31, + ACTIONS(6318), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79700,12 +80100,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [25247] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(890), 1, sym_comment, - ACTIONS(6167), 12, + ACTIONS(6312), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79717,8 +80118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 31, + ACTIONS(6310), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79750,12 +80150,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [25301] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(891), 1, sym_comment, - ACTIONS(6163), 12, + ACTIONS(6308), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79767,8 +80168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 31, + ACTIONS(6306), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79800,12 +80200,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [25355] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(892), 1, sym_comment, - ACTIONS(6159), 12, + ACTIONS(6304), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79817,8 +80218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 31, + ACTIONS(6302), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79850,12 +80250,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [25409] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(893), 1, sym_comment, - ACTIONS(6151), 12, + ACTIONS(6296), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79867,8 +80268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 31, + ACTIONS(6294), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79900,12 +80300,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [25463] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(894), 1, sym_comment, - ACTIONS(6155), 12, + ACTIONS(6300), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79917,8 +80318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 31, + ACTIONS(6298), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79950,12 +80350,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [25517] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(895), 1, sym_comment, - ACTIONS(6151), 12, + ACTIONS(6296), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79967,8 +80368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 31, + ACTIONS(6294), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80000,12 +80400,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [25571] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(896), 1, sym_comment, - ACTIONS(6147), 12, + ACTIONS(6292), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80017,8 +80418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 31, + ACTIONS(6290), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80050,12 +80450,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [25625] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(897), 1, sym_comment, - ACTIONS(6143), 12, + ACTIONS(6288), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80067,8 +80468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 31, + ACTIONS(6286), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80100,12 +80500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [25679] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(898), 1, sym_comment, - ACTIONS(6359), 12, + ACTIONS(6504), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80117,8 +80518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 31, + ACTIONS(6502), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80150,12 +80550,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [25733] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(899), 1, sym_comment, - ACTIONS(6353), 12, + ACTIONS(6498), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80167,8 +80568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 31, + ACTIONS(6496), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80200,12 +80600,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [25787] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(900), 1, sym_comment, - ACTIONS(6367), 12, + ACTIONS(6512), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80217,8 +80618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 31, + ACTIONS(6510), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80250,12 +80650,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [25841] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(901), 1, sym_comment, - ACTIONS(6349), 12, + ACTIONS(6494), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80267,8 +80668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 31, + ACTIONS(6492), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80300,12 +80700,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [25895] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(902), 1, sym_comment, - ACTIONS(6345), 12, + ACTIONS(6490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80317,8 +80718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 31, + ACTIONS(6488), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80350,12 +80750,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [25949] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(903), 1, sym_comment, - ACTIONS(6147), 12, + ACTIONS(6292), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80367,8 +80768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 31, + ACTIONS(6290), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80400,12 +80800,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [26003] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(904), 1, sym_comment, - ACTIONS(6341), 12, + ACTIONS(6486), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80417,8 +80818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 31, + ACTIONS(6484), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80450,12 +80850,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [26057] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(905), 1, sym_comment, - ACTIONS(6337), 12, + ACTIONS(6482), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80467,8 +80868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 31, + ACTIONS(6480), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80500,12 +80900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [26111] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(906), 1, sym_comment, - ACTIONS(6143), 12, + ACTIONS(6288), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80517,8 +80918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 31, + ACTIONS(6286), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80550,12 +80950,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [26165] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(907), 1, sym_comment, - ACTIONS(6333), 12, + ACTIONS(6478), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80567,8 +80968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 31, + ACTIONS(6476), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80600,12 +81000,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [26219] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(908), 1, sym_comment, - ACTIONS(6329), 12, + ACTIONS(6474), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80617,8 +81018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 31, + ACTIONS(6472), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80650,12 +81050,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [26273] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(909), 1, sym_comment, - ACTIONS(6359), 12, + ACTIONS(6504), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80667,8 +81068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 31, + ACTIONS(6502), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80700,12 +81100,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [26327] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(910), 1, sym_comment, - ACTIONS(6353), 12, + ACTIONS(6498), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80717,8 +81118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 31, + ACTIONS(6496), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80750,12 +81150,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [26381] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(911), 1, sym_comment, - ACTIONS(6323), 12, + ACTIONS(6468), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80767,8 +81168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 31, + ACTIONS(6466), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80800,12 +81200,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [26435] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(912), 1, sym_comment, - ACTIONS(6283), 12, + ACTIONS(6428), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80817,8 +81218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 31, + ACTIONS(6426), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80850,12 +81250,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [26489] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(913), 1, sym_comment, - ACTIONS(6263), 12, + ACTIONS(6408), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80867,8 +81268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 31, + ACTIONS(6406), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80900,12 +81300,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [26543] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(914), 1, sym_comment, - ACTIONS(6231), 12, + ACTIONS(6376), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80917,8 +81318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 31, + ACTIONS(6374), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80950,12 +81350,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [26597] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(915), 1, sym_comment, - ACTIONS(6363), 12, + ACTIONS(6508), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80967,8 +81368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 31, + ACTIONS(6506), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81000,12 +81400,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [26651] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(916), 1, sym_comment, - ACTIONS(6211), 12, + ACTIONS(6356), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81017,8 +81418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 31, + ACTIONS(6354), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81050,12 +81450,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [26705] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(917), 1, sym_comment, - ACTIONS(6191), 12, + ACTIONS(6336), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81067,8 +81468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 31, + ACTIONS(6334), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81100,12 +81500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [26759] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(918), 1, sym_comment, - ACTIONS(6187), 12, + ACTIONS(6332), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81117,8 +81518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 31, + ACTIONS(6330), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81150,12 +81550,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [26813] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(919), 1, sym_comment, - ACTIONS(6179), 12, + ACTIONS(6324), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81167,8 +81568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 31, + ACTIONS(6322), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81200,12 +81600,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [26867] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(920), 1, sym_comment, - ACTIONS(6171), 12, + ACTIONS(6316), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81217,8 +81618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 31, + ACTIONS(6314), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81250,12 +81650,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [26921] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(921), 1, sym_comment, - ACTIONS(6319), 12, + ACTIONS(6464), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81267,8 +81668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 31, + ACTIONS(6462), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81300,12 +81700,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [26975] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(922), 1, sym_comment, - ACTIONS(6315), 12, + ACTIONS(6460), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81317,8 +81718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 31, + ACTIONS(6458), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81350,12 +81750,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [27029] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(923), 1, sym_comment, - ACTIONS(6311), 12, + ACTIONS(6456), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81367,8 +81768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 31, + ACTIONS(6454), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81400,12 +81800,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [27083] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(924), 1, sym_comment, - ACTIONS(6135), 12, + ACTIONS(6280), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81417,8 +81818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 31, + ACTIONS(6278), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81450,12 +81850,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [27137] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(925), 1, sym_comment, - ACTIONS(6307), 12, + ACTIONS(6452), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81467,8 +81868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 31, + ACTIONS(6450), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81500,12 +81900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [27191] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(926), 1, sym_comment, - ACTIONS(6303), 12, + ACTIONS(6448), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81517,8 +81918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 31, + ACTIONS(6446), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81550,12 +81950,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [27245] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(927), 1, sym_comment, - ACTIONS(6299), 12, + ACTIONS(6444), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81567,8 +81968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 31, + ACTIONS(6442), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81600,12 +82000,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [27299] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(928), 1, sym_comment, - ACTIONS(6295), 12, + ACTIONS(6440), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81617,8 +82018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 31, + ACTIONS(6438), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81650,12 +82050,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [27353] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(929), 1, sym_comment, - ACTIONS(6291), 12, + ACTIONS(6436), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81667,8 +82068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 31, + ACTIONS(6434), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81700,12 +82100,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [27407] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(930), 1, sym_comment, - ACTIONS(6287), 12, + ACTIONS(6432), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81717,8 +82118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 31, + ACTIONS(6430), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81750,12 +82150,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [27461] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(931), 1, sym_comment, - ACTIONS(6279), 12, + ACTIONS(6424), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81767,8 +82168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 31, + ACTIONS(6422), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81800,12 +82200,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [27515] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(932), 1, sym_comment, - ACTIONS(6275), 12, + ACTIONS(6420), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81817,8 +82218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 31, + ACTIONS(6418), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81850,12 +82250,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [27569] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(933), 1, sym_comment, - ACTIONS(6363), 12, + ACTIONS(6508), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81867,8 +82268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 31, + ACTIONS(6506), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81900,12 +82300,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [27623] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(934), 1, sym_comment, - ACTIONS(6271), 12, + ACTIONS(6416), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81917,8 +82318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 31, + ACTIONS(6414), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81950,12 +82350,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [27677] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(935), 1, sym_comment, - ACTIONS(6267), 12, + ACTIONS(6412), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81967,8 +82368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 31, + ACTIONS(6410), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82000,12 +82400,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [27731] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(936), 1, sym_comment, - ACTIONS(6259), 12, + ACTIONS(6404), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82017,8 +82418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 31, + ACTIONS(6402), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82050,12 +82450,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [27785] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(937), 1, sym_comment, - ACTIONS(6255), 12, + ACTIONS(6400), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82067,8 +82468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 31, + ACTIONS(6398), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82100,12 +82500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [27839] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(938), 1, sym_comment, - ACTIONS(6349), 12, + ACTIONS(6494), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82117,8 +82518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 31, + ACTIONS(6492), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82150,16 +82550,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [27893] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(939), 1, sym_comment, STATE(1142), 1, sym__directive_parameter, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82170,8 +82571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82202,12 +82602,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [27951] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(940), 1, sym_comment, - ACTIONS(6251), 12, + ACTIONS(6396), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82219,8 +82620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 31, + ACTIONS(6394), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82252,12 +82652,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [28005] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(941), 1, sym_comment, - ACTIONS(6247), 12, + ACTIONS(6392), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82269,8 +82670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 31, + ACTIONS(6390), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82302,12 +82702,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [28059] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(942), 1, sym_comment, - ACTIONS(6243), 12, + ACTIONS(6388), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82319,8 +82720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 31, + ACTIONS(6386), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82352,12 +82752,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [28113] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(943), 1, sym_comment, - ACTIONS(6239), 12, + ACTIONS(6384), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82369,8 +82770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 31, + ACTIONS(6382), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82402,12 +82802,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [28167] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(944), 1, sym_comment, - ACTIONS(6235), 12, + ACTIONS(6380), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82419,8 +82820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 31, + ACTIONS(6378), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82452,12 +82852,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [28221] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(945), 1, sym_comment, - ACTIONS(6345), 12, + ACTIONS(6490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82469,8 +82870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 31, + ACTIONS(6488), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82502,12 +82902,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [28275] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(946), 1, sym_comment, - ACTIONS(6227), 12, + ACTIONS(6372), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82519,8 +82920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 31, + ACTIONS(6370), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82552,12 +82952,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [28329] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(947), 1, sym_comment, - ACTIONS(6223), 12, + ACTIONS(6368), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82569,8 +82970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 31, + ACTIONS(6366), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82602,12 +83002,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [28383] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(948), 1, sym_comment, - ACTIONS(6219), 12, + ACTIONS(6364), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82619,8 +83020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 31, + ACTIONS(6362), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82652,12 +83052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [28437] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(949), 1, sym_comment, - ACTIONS(6215), 12, + ACTIONS(6360), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82669,8 +83070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 31, + ACTIONS(6358), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82702,12 +83102,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [28491] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(950), 1, sym_comment, - ACTIONS(6367), 12, + ACTIONS(6512), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82719,8 +83120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 31, + ACTIONS(6510), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82752,12 +83152,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [28545] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(951), 1, sym_comment, - ACTIONS(6207), 12, + ACTIONS(6352), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82769,8 +83170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 31, + ACTIONS(6350), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82802,12 +83202,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [28599] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(952), 1, sym_comment, - ACTIONS(6203), 12, + ACTIONS(6348), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82819,8 +83220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 31, + ACTIONS(6346), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82852,12 +83252,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [28653] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(953), 1, sym_comment, - ACTIONS(6199), 12, + ACTIONS(6344), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82869,8 +83270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 31, + ACTIONS(6342), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82902,12 +83302,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [28707] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(954), 1, sym_comment, - ACTIONS(6183), 12, + ACTIONS(6328), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82919,8 +83320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 31, + ACTIONS(6326), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82952,12 +83352,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [28761] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(955), 1, sym_comment, - ACTIONS(6175), 12, + ACTIONS(6320), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82969,8 +83370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 31, + ACTIONS(6318), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83002,12 +83402,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [28815] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(956), 1, sym_comment, - ACTIONS(6341), 12, + ACTIONS(6486), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83019,8 +83420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 31, + ACTIONS(6484), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83052,12 +83452,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [28869] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(957), 1, sym_comment, - ACTIONS(6167), 12, + ACTIONS(6312), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83069,8 +83470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 31, + ACTIONS(6310), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83102,12 +83502,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [28923] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(958), 1, sym_comment, - ACTIONS(6163), 12, + ACTIONS(6308), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83119,8 +83520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 31, + ACTIONS(6306), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83152,12 +83552,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [28977] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(959), 1, sym_comment, - ACTIONS(6159), 12, + ACTIONS(6304), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83169,8 +83570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 31, + ACTIONS(6302), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83202,12 +83602,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [29031] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(960), 1, sym_comment, - ACTIONS(6155), 12, + ACTIONS(6300), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83219,8 +83620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 31, + ACTIONS(6298), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83252,12 +83652,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [29085] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(961), 1, sym_comment, - ACTIONS(6151), 12, + ACTIONS(6296), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83269,8 +83670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 31, + ACTIONS(6294), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83302,12 +83702,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [29139] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(962), 1, sym_comment, - ACTIONS(6147), 12, + ACTIONS(6292), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83319,8 +83720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 31, + ACTIONS(6290), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83352,12 +83752,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [29193] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(963), 1, sym_comment, - ACTIONS(6247), 12, + ACTIONS(6392), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83369,8 +83770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 31, + ACTIONS(6390), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83402,12 +83802,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [29247] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(964), 1, sym_comment, - ACTIONS(6143), 12, + ACTIONS(6288), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83419,8 +83820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 31, + ACTIONS(6286), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83452,12 +83852,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [29301] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(965), 1, sym_comment, - ACTIONS(6359), 12, + ACTIONS(6504), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83469,8 +83870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 31, + ACTIONS(6502), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83502,12 +83902,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [29355] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(966), 1, sym_comment, - ACTIONS(6337), 12, + ACTIONS(6482), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83519,8 +83920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 31, + ACTIONS(6480), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83552,12 +83952,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [29409] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(967), 1, sym_comment, - ACTIONS(6353), 12, + ACTIONS(6498), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83569,8 +83970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 31, + ACTIONS(6496), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83602,12 +84002,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [29463] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(968), 1, sym_comment, - ACTIONS(6349), 12, + ACTIONS(6494), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83619,8 +84020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 31, + ACTIONS(6492), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83652,12 +84052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [29517] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(969), 1, sym_comment, - ACTIONS(6139), 12, + ACTIONS(6284), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83669,8 +84070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6137), 31, + ACTIONS(6282), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83702,12 +84102,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [29571] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(970), 1, sym_comment, - ACTIONS(6345), 12, + ACTIONS(6490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83719,8 +84120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 31, + ACTIONS(6488), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83752,12 +84152,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [29625] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(971), 1, sym_comment, - ACTIONS(6341), 12, + ACTIONS(6486), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83769,8 +84170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 31, + ACTIONS(6484), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83802,12 +84202,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [29679] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(972), 1, sym_comment, - ACTIONS(6337), 12, + ACTIONS(6482), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83819,8 +84220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 31, + ACTIONS(6480), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83852,12 +84252,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [29733] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(973), 1, sym_comment, - ACTIONS(6333), 12, + ACTIONS(6478), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83869,8 +84270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 31, + ACTIONS(6476), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83902,12 +84302,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [29787] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(974), 1, sym_comment, - ACTIONS(6329), 12, + ACTIONS(6474), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83919,8 +84320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 31, + ACTIONS(6472), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83952,12 +84352,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [29841] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(975), 1, sym_comment, - ACTIONS(6329), 12, + ACTIONS(6474), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83969,8 +84370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 31, + ACTIONS(6472), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84002,12 +84402,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [29895] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(976), 1, sym_comment, - ACTIONS(6323), 12, + ACTIONS(6468), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84019,8 +84420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 31, + ACTIONS(6466), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84052,12 +84452,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [29949] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(977), 1, sym_comment, - ACTIONS(6323), 12, + ACTIONS(6468), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84069,8 +84470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 31, + ACTIONS(6466), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84102,12 +84502,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [30003] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(978), 1, sym_comment, - ACTIONS(6283), 12, + ACTIONS(6428), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84119,8 +84520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 31, + ACTIONS(6426), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84152,12 +84552,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [30057] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(979), 1, sym_comment, - ACTIONS(6263), 12, + ACTIONS(6408), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84169,8 +84570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 31, + ACTIONS(6406), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84202,12 +84602,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [30111] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(980), 1, sym_comment, - ACTIONS(6231), 12, + ACTIONS(6376), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84219,8 +84620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 31, + ACTIONS(6374), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84252,12 +84652,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [30165] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(981), 1, sym_comment, - ACTIONS(6363), 12, + ACTIONS(6508), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84269,8 +84670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 31, + ACTIONS(6506), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84302,12 +84702,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [30219] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(982), 1, sym_comment, - ACTIONS(6211), 12, + ACTIONS(6356), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84319,8 +84720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 31, + ACTIONS(6354), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84352,12 +84752,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [30273] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(983), 1, sym_comment, - ACTIONS(6191), 12, + ACTIONS(6336), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84369,8 +84770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 31, + ACTIONS(6334), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84402,12 +84802,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [30327] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(984), 1, sym_comment, - ACTIONS(6187), 12, + ACTIONS(6332), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84419,8 +84820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 31, + ACTIONS(6330), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84452,12 +84852,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [30381] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(985), 1, sym_comment, - ACTIONS(6179), 12, + ACTIONS(6324), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84469,8 +84870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 31, + ACTIONS(6322), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84502,12 +84902,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [30435] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(986), 1, sym_comment, - ACTIONS(6171), 12, + ACTIONS(6316), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84519,8 +84920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 31, + ACTIONS(6314), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84552,12 +84952,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [30489] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(987), 1, sym_comment, - ACTIONS(6319), 12, + ACTIONS(6464), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84569,8 +84970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 31, + ACTIONS(6462), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84602,12 +85002,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [30543] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(988), 1, sym_comment, - ACTIONS(6315), 12, + ACTIONS(6460), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84619,8 +85020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 31, + ACTIONS(6458), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84652,12 +85052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [30597] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(989), 1, sym_comment, - ACTIONS(6311), 12, + ACTIONS(6456), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84669,8 +85070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 31, + ACTIONS(6454), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84702,12 +85102,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [30651] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(990), 1, sym_comment, - ACTIONS(6135), 12, + ACTIONS(6280), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84719,8 +85120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 31, + ACTIONS(6278), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84752,12 +85152,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [30705] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(991), 1, sym_comment, - ACTIONS(6307), 12, + ACTIONS(6452), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84769,8 +85170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 31, + ACTIONS(6450), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84802,12 +85202,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [30759] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(992), 1, sym_comment, - ACTIONS(6303), 12, + ACTIONS(6448), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84819,8 +85220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 31, + ACTIONS(6446), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84852,12 +85252,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [30813] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(993), 1, sym_comment, - ACTIONS(6299), 12, + ACTIONS(6444), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84869,8 +85270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 31, + ACTIONS(6442), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84902,12 +85302,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [30867] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(994), 1, sym_comment, - ACTIONS(6295), 12, + ACTIONS(6440), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84919,8 +85320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 31, + ACTIONS(6438), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84952,12 +85352,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [30921] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(995), 1, sym_comment, - ACTIONS(6291), 12, + ACTIONS(6436), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84969,8 +85370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 31, + ACTIONS(6434), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85002,12 +85402,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [30975] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(996), 1, sym_comment, - ACTIONS(6243), 12, + ACTIONS(6388), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85019,8 +85420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 31, + ACTIONS(6386), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85052,12 +85452,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [31029] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(997), 1, sym_comment, - ACTIONS(6287), 12, + ACTIONS(6432), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85069,8 +85470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 31, + ACTIONS(6430), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85102,12 +85502,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [31083] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(998), 1, sym_comment, - ACTIONS(6279), 12, + ACTIONS(6424), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85119,8 +85520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 31, + ACTIONS(6422), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85152,12 +85552,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [31137] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(999), 1, sym_comment, - ACTIONS(6275), 12, + ACTIONS(6420), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85169,8 +85570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 31, + ACTIONS(6418), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85202,12 +85602,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [31191] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1000), 1, sym_comment, - ACTIONS(6323), 12, + ACTIONS(6468), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85219,8 +85620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 31, + ACTIONS(6466), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85252,16 +85652,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [31245] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6403), 1, + ACTIONS(6548), 1, anon_sym_LPAREN, STATE(1001), 1, sym_comment, STATE(2154), 1, sym__directive_parameter, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85272,8 +85673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85304,12 +85704,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [31303] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1002), 1, sym_comment, - ACTIONS(6195), 12, + ACTIONS(6340), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85321,8 +85722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6193), 31, + ACTIONS(6338), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85354,12 +85754,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [31357] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1003), 1, sym_comment, - ACTIONS(6271), 12, + ACTIONS(6416), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85371,8 +85772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 31, + ACTIONS(6414), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85404,12 +85804,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [31411] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1004), 1, sym_comment, - ACTIONS(6329), 12, + ACTIONS(6474), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85421,8 +85822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 31, + ACTIONS(6472), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85454,12 +85854,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [31465] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1005), 1, sym_comment, - ACTIONS(6333), 12, + ACTIONS(6478), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85471,8 +85872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 31, + ACTIONS(6476), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85504,12 +85904,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [31519] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1006), 1, sym_comment, - ACTIONS(6337), 12, + ACTIONS(6482), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85521,8 +85922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 31, + ACTIONS(6480), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85554,12 +85954,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [31573] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1007), 1, sym_comment, - ACTIONS(6341), 12, + ACTIONS(6486), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85571,8 +85972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 31, + ACTIONS(6484), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85604,12 +86004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [31627] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1008), 1, sym_comment, - ACTIONS(6345), 12, + ACTIONS(6490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85621,8 +86022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 31, + ACTIONS(6488), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85654,12 +86054,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [31681] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1009), 1, sym_comment, - ACTIONS(6349), 12, + ACTIONS(6494), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85671,8 +86072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 31, + ACTIONS(6492), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85704,12 +86104,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [31735] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1010), 1, sym_comment, - ACTIONS(6353), 12, + ACTIONS(6498), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85721,8 +86122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 31, + ACTIONS(6496), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85754,12 +86154,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [31789] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1011), 1, sym_comment, - ACTIONS(6359), 12, + ACTIONS(6504), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85771,8 +86172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 31, + ACTIONS(6502), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85804,12 +86204,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [31843] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1012), 1, sym_comment, - ACTIONS(6143), 12, + ACTIONS(6288), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85821,8 +86222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 31, + ACTIONS(6286), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85854,12 +86254,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [31897] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1013), 1, sym_comment, - ACTIONS(6147), 12, + ACTIONS(6292), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85871,8 +86272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 31, + ACTIONS(6290), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85904,12 +86304,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [31951] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1014), 1, sym_comment, - ACTIONS(6151), 12, + ACTIONS(6296), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85921,8 +86322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 31, + ACTIONS(6294), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85954,12 +86354,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [32005] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1015), 1, sym_comment, - ACTIONS(6155), 12, + ACTIONS(6300), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85971,8 +86372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 31, + ACTIONS(6298), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86004,12 +86404,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [32059] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1016), 1, sym_comment, - ACTIONS(6159), 12, + ACTIONS(6304), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86021,8 +86422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 31, + ACTIONS(6302), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86054,12 +86454,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [32113] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1017), 1, sym_comment, - ACTIONS(6163), 12, + ACTIONS(6308), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86071,8 +86472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 31, + ACTIONS(6306), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86104,12 +86504,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [32167] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1018), 1, sym_comment, - ACTIONS(6167), 12, + ACTIONS(6312), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86121,8 +86522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 31, + ACTIONS(6310), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86154,12 +86554,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [32221] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1019), 1, sym_comment, - ACTIONS(6115), 12, + ACTIONS(6260), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86171,8 +86572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6113), 31, + ACTIONS(6258), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86204,12 +86604,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [32275] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1020), 1, sym_comment, - ACTIONS(6175), 12, + ACTIONS(6320), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86221,8 +86622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 31, + ACTIONS(6318), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86254,12 +86654,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [32329] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1021), 1, sym_comment, - ACTIONS(6267), 12, + ACTIONS(6412), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86271,8 +86672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 31, + ACTIONS(6410), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86304,12 +86704,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [32383] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1022), 1, sym_comment, - ACTIONS(6183), 12, + ACTIONS(6328), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86321,8 +86722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 31, + ACTIONS(6326), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86354,12 +86754,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [32437] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1023), 1, sym_comment, - ACTIONS(6199), 12, + ACTIONS(6344), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86371,8 +86772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 31, + ACTIONS(6342), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86404,12 +86804,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [32491] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1024), 1, sym_comment, - ACTIONS(6203), 12, + ACTIONS(6348), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86421,8 +86822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 31, + ACTIONS(6346), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86454,12 +86854,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [32545] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1025), 1, sym_comment, - ACTIONS(6207), 12, + ACTIONS(6352), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86471,8 +86872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 31, + ACTIONS(6350), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86504,12 +86904,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [32599] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1026), 1, sym_comment, - ACTIONS(6367), 12, + ACTIONS(6512), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86521,8 +86922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 31, + ACTIONS(6510), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86554,12 +86954,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [32653] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1027), 1, sym_comment, - ACTIONS(6215), 12, + ACTIONS(6360), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86571,8 +86972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 31, + ACTIONS(6358), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86604,12 +87004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [32707] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1028), 1, sym_comment, - ACTIONS(6219), 12, + ACTIONS(6364), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86621,8 +87022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 31, + ACTIONS(6362), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86654,12 +87054,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [32761] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1029), 1, sym_comment, - ACTIONS(6115), 12, + ACTIONS(6260), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86671,8 +87072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6113), 31, + ACTIONS(6258), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86704,12 +87104,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [32815] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1030), 1, sym_comment, - ACTIONS(6223), 12, + ACTIONS(6368), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86721,8 +87122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 31, + ACTIONS(6366), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86754,12 +87154,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [32869] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1031), 1, sym_comment, - ACTIONS(6227), 12, + ACTIONS(6372), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86771,8 +87172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 31, + ACTIONS(6370), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86804,16 +87204,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [32923] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6405), 1, + ACTIONS(6550), 1, anon_sym_LPAREN, STATE(1032), 1, sym_comment, STATE(2140), 1, sym__directive_parameter, - ACTIONS(6107), 11, + ACTIONS(6252), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86824,8 +87225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6105), 30, + ACTIONS(6250), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86856,12 +87256,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [32981] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1033), 1, sym_comment, - ACTIONS(6235), 12, + ACTIONS(6380), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86873,8 +87274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 31, + ACTIONS(6378), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86906,12 +87306,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [33035] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1034), 1, sym_comment, - ACTIONS(6239), 12, + ACTIONS(6384), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86923,8 +87324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 31, + ACTIONS(6382), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86956,12 +87356,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [33089] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1035), 1, sym_comment, - ACTIONS(6243), 12, + ACTIONS(6388), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86973,8 +87374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 31, + ACTIONS(6386), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87006,12 +87406,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [33143] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1036), 1, sym_comment, - ACTIONS(6247), 12, + ACTIONS(6392), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87023,8 +87424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 31, + ACTIONS(6390), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87056,12 +87456,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [33197] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1037), 1, sym_comment, - ACTIONS(6251), 12, + ACTIONS(6396), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87073,8 +87474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 31, + ACTIONS(6394), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87106,12 +87506,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [33251] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1038), 1, sym_comment, - ACTIONS(6255), 12, + ACTIONS(6400), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87123,8 +87524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 31, + ACTIONS(6398), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87156,12 +87556,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [33305] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1039), 1, sym_comment, - ACTIONS(6259), 12, + ACTIONS(6404), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87173,8 +87574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 31, + ACTIONS(6402), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87206,12 +87606,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [33359] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1040), 1, sym_comment, - ACTIONS(6267), 12, + ACTIONS(6412), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87223,8 +87624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 31, + ACTIONS(6410), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87256,12 +87656,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [33413] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1041), 1, sym_comment, - ACTIONS(6271), 12, + ACTIONS(6416), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87273,8 +87674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 31, + ACTIONS(6414), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87306,12 +87706,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [33467] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1042), 1, sym_comment, - ACTIONS(6275), 12, + ACTIONS(6420), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87323,8 +87724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 31, + ACTIONS(6418), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87356,12 +87756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [33521] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1043), 1, sym_comment, - ACTIONS(6279), 12, + ACTIONS(6424), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87373,8 +87774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 31, + ACTIONS(6422), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87406,12 +87806,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [33575] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1044), 1, sym_comment, - ACTIONS(6287), 12, + ACTIONS(6432), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87423,8 +87824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 31, + ACTIONS(6430), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87456,12 +87856,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [33629] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1045), 1, sym_comment, - ACTIONS(6291), 12, + ACTIONS(6436), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87473,8 +87874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 31, + ACTIONS(6434), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87506,12 +87906,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [33683] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1046), 1, sym_comment, - ACTIONS(6295), 12, + ACTIONS(6440), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87523,8 +87924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 31, + ACTIONS(6438), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87556,12 +87956,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [33737] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1047), 1, sym_comment, - ACTIONS(6299), 12, + ACTIONS(6444), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87573,8 +87974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 31, + ACTIONS(6442), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87606,12 +88006,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [33791] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1048), 1, sym_comment, - ACTIONS(6303), 12, + ACTIONS(6448), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87623,8 +88024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 31, + ACTIONS(6446), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87656,12 +88056,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [33845] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1049), 1, sym_comment, - ACTIONS(6307), 12, + ACTIONS(6452), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87673,8 +88074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 31, + ACTIONS(6450), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87706,12 +88106,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [33899] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1050), 1, sym_comment, - ACTIONS(6135), 12, + ACTIONS(6280), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87723,8 +88124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 31, + ACTIONS(6278), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87756,12 +88156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [33953] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1051), 1, sym_comment, - ACTIONS(6311), 12, + ACTIONS(6456), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87773,8 +88174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 31, + ACTIONS(6454), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87806,12 +88206,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [34007] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1052), 1, sym_comment, - ACTIONS(6315), 12, + ACTIONS(6460), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87823,8 +88224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 31, + ACTIONS(6458), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87856,12 +88256,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [34061] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1053), 1, sym_comment, - ACTIONS(6319), 12, + ACTIONS(6464), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87873,8 +88274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 31, + ACTIONS(6462), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87906,12 +88306,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [34115] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1054), 1, sym_comment, - ACTIONS(6171), 12, + ACTIONS(6316), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87923,8 +88324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 31, + ACTIONS(6314), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87956,12 +88356,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [34169] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1055), 1, sym_comment, - ACTIONS(6179), 12, + ACTIONS(6324), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87973,8 +88374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 31, + ACTIONS(6322), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88006,12 +88406,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [34223] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1056), 1, sym_comment, - ACTIONS(6187), 12, + ACTIONS(6332), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88023,8 +88424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 31, + ACTIONS(6330), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88056,12 +88456,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [34277] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1057), 1, sym_comment, - ACTIONS(6191), 12, + ACTIONS(6336), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88073,8 +88474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 31, + ACTIONS(6334), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88106,12 +88506,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [34331] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1058), 1, sym_comment, - ACTIONS(6211), 12, + ACTIONS(6356), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88123,8 +88524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 31, + ACTIONS(6354), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88156,12 +88556,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [34385] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1059), 1, sym_comment, - ACTIONS(6363), 12, + ACTIONS(6508), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88173,8 +88574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 31, + ACTIONS(6506), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88206,12 +88606,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [34439] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1060), 1, sym_comment, - ACTIONS(6231), 12, + ACTIONS(6376), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88223,8 +88624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 31, + ACTIONS(6374), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88256,12 +88656,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [34493] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1061), 1, sym_comment, - ACTIONS(6263), 12, + ACTIONS(6408), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88273,8 +88674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 31, + ACTIONS(6406), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88306,12 +88706,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [34547] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1062), 1, sym_comment, - ACTIONS(6283), 12, + ACTIONS(6428), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88323,8 +88724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 31, + ACTIONS(6426), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88356,12 +88756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [34601] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1063), 1, sym_comment, - ACTIONS(6323), 12, + ACTIONS(6468), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88373,8 +88774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 31, + ACTIONS(6466), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88406,12 +88806,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [34655] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1064), 1, sym_comment, - ACTIONS(6195), 12, + ACTIONS(6340), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88423,8 +88824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6193), 31, + ACTIONS(6338), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88456,12 +88856,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [34709] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1065), 1, sym_comment, - ACTIONS(6409), 12, + ACTIONS(6554), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88473,8 +88874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6407), 31, + ACTIONS(6552), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88506,12 +88906,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [34763] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1066), 1, sym_comment, - ACTIONS(6259), 12, + ACTIONS(6404), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88523,8 +88924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 31, + ACTIONS(6402), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88556,12 +88956,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [34817] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1067), 1, sym_comment, - ACTIONS(6329), 12, + ACTIONS(6474), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88573,8 +88974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 31, + ACTIONS(6472), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88606,12 +89006,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [34871] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1068), 1, sym_comment, - ACTIONS(6333), 12, + ACTIONS(6478), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88623,8 +89024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 31, + ACTIONS(6476), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88656,12 +89056,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [34925] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1069), 1, sym_comment, - ACTIONS(6337), 12, + ACTIONS(6482), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88673,8 +89074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 31, + ACTIONS(6480), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88706,12 +89106,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [34979] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1070), 1, sym_comment, - ACTIONS(6341), 12, + ACTIONS(6486), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88723,8 +89124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 31, + ACTIONS(6484), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88756,12 +89156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [35033] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1071), 1, sym_comment, - ACTIONS(6345), 12, + ACTIONS(6490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88773,8 +89174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 31, + ACTIONS(6488), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88806,12 +89206,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [35087] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1072), 1, sym_comment, - ACTIONS(6349), 12, + ACTIONS(6494), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88823,8 +89224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 31, + ACTIONS(6492), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88856,12 +89256,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [35141] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1073), 1, sym_comment, - ACTIONS(6353), 12, + ACTIONS(6498), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88873,8 +89274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 31, + ACTIONS(6496), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88906,12 +89306,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [35195] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1074), 1, sym_comment, - ACTIONS(6359), 12, + ACTIONS(6504), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88923,8 +89324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 31, + ACTIONS(6502), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88956,12 +89356,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [35249] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1075), 1, sym_comment, - ACTIONS(6143), 12, + ACTIONS(6288), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88973,8 +89374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 31, + ACTIONS(6286), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89006,12 +89406,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [35303] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1076), 1, sym_comment, - ACTIONS(6147), 12, + ACTIONS(6292), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89023,8 +89424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 31, + ACTIONS(6290), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89056,12 +89456,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [35357] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1077), 1, sym_comment, - ACTIONS(6151), 12, + ACTIONS(6296), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89073,8 +89474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 31, + ACTIONS(6294), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89106,12 +89506,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [35411] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1078), 1, sym_comment, - ACTIONS(6155), 12, + ACTIONS(6300), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89123,8 +89524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 31, + ACTIONS(6298), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89156,12 +89556,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [35465] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1079), 1, sym_comment, - ACTIONS(6159), 12, + ACTIONS(6304), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89173,8 +89574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 31, + ACTIONS(6302), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89206,12 +89606,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [35519] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1080), 1, sym_comment, - ACTIONS(6163), 12, + ACTIONS(6308), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89223,8 +89624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 31, + ACTIONS(6306), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89256,12 +89656,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [35573] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1081), 1, sym_comment, - ACTIONS(6167), 12, + ACTIONS(6312), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89273,8 +89674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 31, + ACTIONS(6310), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89306,12 +89706,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [35627] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1082), 1, sym_comment, - ACTIONS(6139), 12, + ACTIONS(6284), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89323,8 +89724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6137), 31, + ACTIONS(6282), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89356,12 +89756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [35681] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1083), 1, sym_comment, - ACTIONS(6175), 12, + ACTIONS(6320), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89373,8 +89774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 31, + ACTIONS(6318), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89406,12 +89806,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [35735] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1084), 1, sym_comment, - ACTIONS(6255), 12, + ACTIONS(6400), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89423,8 +89824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 31, + ACTIONS(6398), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89456,12 +89856,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [35789] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1085), 1, sym_comment, - ACTIONS(6183), 12, + ACTIONS(6328), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89473,8 +89874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 31, + ACTIONS(6326), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89506,12 +89906,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [35843] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1086), 1, sym_comment, - ACTIONS(6199), 12, + ACTIONS(6344), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89523,8 +89924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 31, + ACTIONS(6342), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89556,12 +89956,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [35897] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1087), 1, sym_comment, - ACTIONS(6203), 12, + ACTIONS(6348), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89573,8 +89974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 31, + ACTIONS(6346), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89606,12 +90006,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [35951] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1088), 1, sym_comment, - ACTIONS(6207), 12, + ACTIONS(6352), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89623,8 +90024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 31, + ACTIONS(6350), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89656,12 +90056,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [36005] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1089), 1, sym_comment, - ACTIONS(6367), 12, + ACTIONS(6512), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89673,8 +90074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 31, + ACTIONS(6510), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89706,12 +90106,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [36059] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1090), 1, sym_comment, - ACTIONS(6215), 12, + ACTIONS(6360), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89723,8 +90124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 31, + ACTIONS(6358), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89756,12 +90156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [36113] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1091), 1, sym_comment, - ACTIONS(6219), 12, + ACTIONS(6364), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89773,8 +90174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 31, + ACTIONS(6362), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89806,12 +90206,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [36167] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1092), 1, sym_comment, - ACTIONS(6195), 12, + ACTIONS(6340), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89823,8 +90224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6193), 31, + ACTIONS(6338), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89856,12 +90256,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [36221] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1093), 1, sym_comment, - ACTIONS(6223), 12, + ACTIONS(6368), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89873,8 +90274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 31, + ACTIONS(6366), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89906,12 +90306,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [36275] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1094), 1, sym_comment, - ACTIONS(6227), 12, + ACTIONS(6372), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89923,8 +90324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 31, + ACTIONS(6370), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89956,12 +90356,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [36329] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1095), 1, sym_comment, - ACTIONS(6115), 12, + ACTIONS(6260), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89973,8 +90374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6113), 31, + ACTIONS(6258), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90006,12 +90406,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [36383] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1096), 1, sym_comment, - ACTIONS(6235), 12, + ACTIONS(6380), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90023,8 +90424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 31, + ACTIONS(6378), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90056,12 +90456,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [36437] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1097), 1, sym_comment, - ACTIONS(6239), 12, + ACTIONS(6384), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90073,8 +90474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 31, + ACTIONS(6382), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90106,12 +90506,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [36491] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1098), 1, sym_comment, - ACTIONS(6363), 12, + ACTIONS(6508), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90123,8 +90524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 30, + ACTIONS(6506), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90155,12 +90555,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [36544] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1099), 1, sym_comment, - ACTIONS(6367), 12, + ACTIONS(6512), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90172,8 +90573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 30, + ACTIONS(6510), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90204,12 +90604,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [36597] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1100), 1, sym_comment, - ACTIONS(6307), 11, + ACTIONS(6452), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90220,8 +90621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 30, + ACTIONS(6450), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90252,12 +90652,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [36649] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1101), 1, sym_comment, - ACTIONS(6199), 11, + ACTIONS(6344), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90268,8 +90669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 30, + ACTIONS(6342), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90300,12 +90700,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [36701] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1102), 1, sym_comment, - ACTIONS(6413), 11, + ACTIONS(6558), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90316,8 +90717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6411), 30, + ACTIONS(6556), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90348,12 +90748,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [36753] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1103), 1, sym_comment, - ACTIONS(6203), 11, + ACTIONS(6348), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90364,8 +90765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 30, + ACTIONS(6346), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90396,12 +90796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [36805] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1104), 1, sym_comment, - ACTIONS(6413), 11, + ACTIONS(6558), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90412,8 +90813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6411), 30, + ACTIONS(6556), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90444,12 +90844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [36857] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1105), 1, sym_comment, - ACTIONS(6375), 11, + ACTIONS(6520), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90460,8 +90861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 30, + ACTIONS(6518), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90492,12 +90892,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [36909] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1106), 1, sym_comment, - ACTIONS(6283), 11, + ACTIONS(6428), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90508,8 +90909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 30, + ACTIONS(6426), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90540,12 +90940,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [36961] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1107), 1, sym_comment, - ACTIONS(6263), 11, + ACTIONS(6408), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90556,8 +90957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 30, + ACTIONS(6406), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90588,12 +90988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [37013] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1108), 1, sym_comment, - ACTIONS(6231), 11, + ACTIONS(6376), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90604,8 +91005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 30, + ACTIONS(6374), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90636,12 +91036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [37065] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1109), 1, sym_comment, - ACTIONS(6211), 11, + ACTIONS(6356), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90652,8 +91053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 30, + ACTIONS(6354), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90684,12 +91084,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [37117] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1110), 1, sym_comment, - ACTIONS(6191), 11, + ACTIONS(6336), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90700,8 +91101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 30, + ACTIONS(6334), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90732,12 +91132,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [37169] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1111), 1, sym_comment, - ACTIONS(6187), 11, + ACTIONS(6332), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90748,8 +91149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 30, + ACTIONS(6330), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90780,12 +91180,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [37221] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1112), 1, sym_comment, - ACTIONS(6179), 11, + ACTIONS(6324), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90796,8 +91197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 30, + ACTIONS(6322), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90828,12 +91228,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [37273] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1113), 1, sym_comment, - ACTIONS(6171), 11, + ACTIONS(6316), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90844,8 +91245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 30, + ACTIONS(6314), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90876,12 +91276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [37325] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1114), 1, sym_comment, - ACTIONS(6319), 11, + ACTIONS(6464), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90892,8 +91293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 30, + ACTIONS(6462), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90924,12 +91324,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [37377] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1115), 1, sym_comment, - ACTIONS(6315), 11, + ACTIONS(6460), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90940,8 +91341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 30, + ACTIONS(6458), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90972,12 +91372,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [37429] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1116), 1, sym_comment, - ACTIONS(6311), 11, + ACTIONS(6456), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90988,8 +91389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 30, + ACTIONS(6454), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91020,12 +91420,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [37481] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1117), 1, sym_comment, - ACTIONS(6135), 11, + ACTIONS(6280), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -91036,8 +91437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 30, + ACTIONS(6278), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91068,12 +91468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [37533] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1118), 1, sym_comment, - ACTIONS(6307), 11, + ACTIONS(6452), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -91084,8 +91485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 30, + ACTIONS(6450), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91116,12 +91516,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [37585] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1119), 1, sym_comment, - ACTIONS(6303), 11, + ACTIONS(6448), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -91132,8 +91533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 30, + ACTIONS(6446), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91164,12 +91564,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [37637] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1120), 1, sym_comment, - ACTIONS(6299), 11, + ACTIONS(6444), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -91180,8 +91581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 30, + ACTIONS(6442), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91212,12 +91612,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [37689] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1121), 1, sym_comment, - ACTIONS(6295), 11, + ACTIONS(6440), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -91228,8 +91629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 30, + ACTIONS(6438), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91260,12 +91660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [37741] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1122), 1, sym_comment, - ACTIONS(6291), 11, + ACTIONS(6436), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -91276,8 +91677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 30, + ACTIONS(6434), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91308,12 +91708,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [37793] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1123), 1, sym_comment, - ACTIONS(6287), 11, + ACTIONS(6432), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -91324,8 +91725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 30, + ACTIONS(6430), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91356,12 +91756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [37845] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1124), 1, sym_comment, - ACTIONS(6279), 11, + ACTIONS(6424), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -91372,8 +91773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 30, + ACTIONS(6422), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91404,12 +91804,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [37897] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1125), 1, sym_comment, - ACTIONS(6275), 11, + ACTIONS(6420), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -91420,8 +91821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 30, + ACTIONS(6418), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91452,12 +91852,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [37949] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1126), 1, sym_comment, - ACTIONS(6271), 11, + ACTIONS(6416), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -91468,8 +91869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 30, + ACTIONS(6414), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91500,12 +91900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [38001] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1127), 1, sym_comment, - ACTIONS(6267), 11, + ACTIONS(6412), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -91516,8 +91917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 30, + ACTIONS(6410), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91548,12 +91948,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [38053] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1128), 1, sym_comment, - ACTIONS(6259), 11, + ACTIONS(6404), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -91564,8 +91965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 30, + ACTIONS(6402), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91596,12 +91996,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [38105] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1129), 1, sym_comment, - ACTIONS(6375), 11, + ACTIONS(6520), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -91612,8 +92013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 30, + ACTIONS(6518), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91644,12 +92044,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [38157] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1130), 1, sym_comment, - ACTIONS(6255), 11, + ACTIONS(6400), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -91660,8 +92061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 30, + ACTIONS(6398), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91692,12 +92092,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [38209] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1131), 1, sym_comment, - ACTIONS(6251), 11, + ACTIONS(6396), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -91708,8 +92109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 30, + ACTIONS(6394), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91740,12 +92140,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [38261] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1132), 1, sym_comment, - ACTIONS(6247), 11, + ACTIONS(6392), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -91756,8 +92157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 30, + ACTIONS(6390), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91788,12 +92188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [38313] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1133), 1, sym_comment, - ACTIONS(6243), 11, + ACTIONS(6388), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -91804,8 +92205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 30, + ACTIONS(6386), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91836,12 +92236,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [38365] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1134), 1, sym_comment, - ACTIONS(6239), 11, + ACTIONS(6384), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -91852,8 +92253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 30, + ACTIONS(6382), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91884,12 +92284,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [38417] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1135), 1, sym_comment, - ACTIONS(6235), 11, + ACTIONS(6380), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -91900,8 +92301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 30, + ACTIONS(6378), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91932,12 +92332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [38469] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1136), 1, sym_comment, - ACTIONS(6227), 11, + ACTIONS(6372), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -91948,8 +92349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 30, + ACTIONS(6370), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91980,12 +92380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [38521] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1137), 1, sym_comment, - ACTIONS(6223), 11, + ACTIONS(6368), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -91996,8 +92397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 30, + ACTIONS(6366), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92028,12 +92428,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [38573] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1138), 1, sym_comment, - ACTIONS(6219), 11, + ACTIONS(6364), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -92044,8 +92445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 30, + ACTIONS(6362), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92076,12 +92476,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [38625] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1139), 1, sym_comment, - ACTIONS(6215), 11, + ACTIONS(6360), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -92092,8 +92493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 30, + ACTIONS(6358), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92124,12 +92524,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [38677] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1140), 1, sym_comment, - ACTIONS(6207), 11, + ACTIONS(6352), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -92140,8 +92541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 30, + ACTIONS(6350), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92172,12 +92572,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [38729] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1141), 1, sym_comment, - ACTIONS(6203), 11, + ACTIONS(6348), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -92188,8 +92589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 30, + ACTIONS(6346), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92220,12 +92620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [38781] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1142), 1, sym_comment, - ACTIONS(6199), 11, + ACTIONS(6344), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -92236,8 +92637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 30, + ACTIONS(6342), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92268,12 +92668,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [38833] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1143), 1, sym_comment, - ACTIONS(6183), 11, + ACTIONS(6328), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -92284,8 +92685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 30, + ACTIONS(6326), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92316,12 +92716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [38885] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1144), 1, sym_comment, - ACTIONS(6413), 11, + ACTIONS(6558), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -92332,8 +92733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6411), 30, + ACTIONS(6556), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92364,12 +92764,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [38937] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1145), 1, sym_comment, - ACTIONS(6175), 11, + ACTIONS(6320), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -92380,8 +92781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 30, + ACTIONS(6318), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92412,12 +92812,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [38989] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1146), 1, sym_comment, - ACTIONS(6413), 11, + ACTIONS(6558), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -92428,8 +92829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6411), 30, + ACTIONS(6556), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92460,12 +92860,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [39041] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1147), 1, sym_comment, - ACTIONS(6167), 11, + ACTIONS(6312), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -92476,8 +92877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 30, + ACTIONS(6310), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92508,12 +92908,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [39093] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1148), 1, sym_comment, - ACTIONS(6163), 11, + ACTIONS(6308), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -92524,8 +92925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 30, + ACTIONS(6306), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92556,12 +92956,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [39145] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1149), 1, sym_comment, - ACTIONS(6159), 11, + ACTIONS(6304), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -92572,8 +92973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 30, + ACTIONS(6302), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92604,12 +93004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [39197] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1150), 1, sym_comment, - ACTIONS(6155), 11, + ACTIONS(6300), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -92620,8 +93021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 30, + ACTIONS(6298), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92652,12 +93052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [39249] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1151), 1, sym_comment, - ACTIONS(6151), 11, + ACTIONS(6296), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -92668,8 +93069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 30, + ACTIONS(6294), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92700,12 +93100,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [39301] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1152), 1, sym_comment, - ACTIONS(6147), 11, + ACTIONS(6292), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -92716,8 +93117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 30, + ACTIONS(6290), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92748,12 +93148,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [39353] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1153), 1, sym_comment, - ACTIONS(6143), 11, + ACTIONS(6288), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -92764,8 +93165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 30, + ACTIONS(6286), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92796,12 +93196,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [39405] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1154), 1, sym_comment, - ACTIONS(6359), 11, + ACTIONS(6504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -92812,8 +93213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 30, + ACTIONS(6502), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92844,12 +93244,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [39457] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1155), 1, sym_comment, - ACTIONS(6353), 11, + ACTIONS(6498), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -92860,8 +93261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 30, + ACTIONS(6496), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92892,12 +93292,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [39509] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1156), 1, sym_comment, - ACTIONS(6349), 11, + ACTIONS(6494), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -92908,8 +93309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 30, + ACTIONS(6492), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92940,12 +93340,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [39561] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1157), 1, sym_comment, - ACTIONS(6345), 11, + ACTIONS(6490), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -92956,8 +93357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 30, + ACTIONS(6488), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92988,12 +93388,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [39613] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1158), 1, sym_comment, - ACTIONS(6341), 11, + ACTIONS(6486), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -93004,8 +93405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 30, + ACTIONS(6484), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93036,12 +93436,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [39665] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1159), 1, sym_comment, - ACTIONS(6337), 11, + ACTIONS(6482), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -93052,8 +93453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 30, + ACTIONS(6480), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93084,12 +93484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [39717] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1160), 1, sym_comment, - ACTIONS(6333), 11, + ACTIONS(6478), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -93100,8 +93501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 30, + ACTIONS(6476), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93132,12 +93532,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [39769] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1161), 1, sym_comment, - ACTIONS(6329), 11, + ACTIONS(6474), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -93148,8 +93549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 30, + ACTIONS(6472), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93180,12 +93580,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [39821] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1162), 1, sym_comment, - ACTIONS(6375), 11, + ACTIONS(6520), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -93196,8 +93597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 30, + ACTIONS(6518), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93228,12 +93628,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [39873] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1163), 1, sym_comment, - ACTIONS(6323), 11, + ACTIONS(6468), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -93244,8 +93645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 30, + ACTIONS(6466), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93276,12 +93676,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [39925] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1164), 1, sym_comment, - ACTIONS(6283), 11, + ACTIONS(6428), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -93292,8 +93693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 30, + ACTIONS(6426), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93324,12 +93724,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [39977] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1165), 1, sym_comment, - ACTIONS(6263), 11, + ACTIONS(6408), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -93340,8 +93741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 30, + ACTIONS(6406), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93372,12 +93772,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [40029] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1166), 1, sym_comment, - ACTIONS(6231), 11, + ACTIONS(6376), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -93388,8 +93789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 30, + ACTIONS(6374), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93420,12 +93820,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [40081] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1167), 1, sym_comment, - ACTIONS(6211), 11, + ACTIONS(6356), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -93436,8 +93837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 30, + ACTIONS(6354), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93468,12 +93868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [40133] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1168), 1, sym_comment, - ACTIONS(6191), 11, + ACTIONS(6336), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -93484,8 +93885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 30, + ACTIONS(6334), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93516,12 +93916,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [40185] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1169), 1, sym_comment, - ACTIONS(6187), 11, + ACTIONS(6332), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -93532,8 +93933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 30, + ACTIONS(6330), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93564,12 +93964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [40237] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1170), 1, sym_comment, - ACTIONS(6179), 11, + ACTIONS(6324), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -93580,8 +93981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 30, + ACTIONS(6322), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93612,12 +94012,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [40289] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1171), 1, sym_comment, - ACTIONS(6171), 11, + ACTIONS(6316), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -93628,8 +94029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 30, + ACTIONS(6314), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93660,12 +94060,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [40341] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1172), 1, sym_comment, - ACTIONS(6319), 11, + ACTIONS(6464), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -93676,8 +94077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 30, + ACTIONS(6462), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93708,12 +94108,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [40393] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1173), 1, sym_comment, - ACTIONS(6315), 11, + ACTIONS(6460), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -93724,8 +94125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 30, + ACTIONS(6458), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93756,12 +94156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [40445] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1174), 1, sym_comment, - ACTIONS(6311), 11, + ACTIONS(6456), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -93772,8 +94173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 30, + ACTIONS(6454), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93804,12 +94204,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [40497] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1175), 1, sym_comment, - ACTIONS(6135), 11, + ACTIONS(6280), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -93820,8 +94221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 30, + ACTIONS(6278), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93852,12 +94252,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [40549] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1176), 1, sym_comment, - ACTIONS(6307), 11, + ACTIONS(6452), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -93868,8 +94269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 30, + ACTIONS(6450), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93900,12 +94300,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [40601] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1177), 1, sym_comment, - ACTIONS(6303), 11, + ACTIONS(6448), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -93916,8 +94317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 30, + ACTIONS(6446), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93948,12 +94348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [40653] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1178), 1, sym_comment, - ACTIONS(6299), 11, + ACTIONS(6444), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -93964,8 +94365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 30, + ACTIONS(6442), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93996,12 +94396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [40705] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1179), 1, sym_comment, - ACTIONS(6295), 11, + ACTIONS(6440), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -94012,8 +94413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 30, + ACTIONS(6438), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94044,12 +94444,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [40757] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1180), 1, sym_comment, - ACTIONS(6291), 11, + ACTIONS(6436), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -94060,8 +94461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 30, + ACTIONS(6434), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94092,12 +94492,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [40809] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1181), 1, sym_comment, - ACTIONS(6287), 11, + ACTIONS(6432), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -94108,8 +94509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 30, + ACTIONS(6430), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94140,12 +94540,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [40861] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1182), 1, sym_comment, - ACTIONS(6279), 11, + ACTIONS(6424), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -94156,8 +94557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 30, + ACTIONS(6422), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94188,12 +94588,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [40913] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1183), 1, sym_comment, - ACTIONS(6275), 11, + ACTIONS(6420), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -94204,8 +94605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 30, + ACTIONS(6418), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94236,12 +94636,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [40965] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1184), 1, sym_comment, - ACTIONS(6271), 11, + ACTIONS(6416), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -94252,8 +94653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 30, + ACTIONS(6414), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94284,12 +94684,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [41017] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1185), 1, sym_comment, - ACTIONS(6267), 11, + ACTIONS(6412), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -94300,8 +94701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 30, + ACTIONS(6410), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94332,12 +94732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [41069] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1186), 1, sym_comment, - ACTIONS(6259), 11, + ACTIONS(6404), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -94348,8 +94749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 30, + ACTIONS(6402), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94380,12 +94780,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [41121] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1187), 1, sym_comment, - ACTIONS(6255), 11, + ACTIONS(6400), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -94396,8 +94797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 30, + ACTIONS(6398), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94428,12 +94828,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [41173] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1188), 1, sym_comment, - ACTIONS(6251), 11, + ACTIONS(6396), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -94444,8 +94845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 30, + ACTIONS(6394), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94476,12 +94876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [41225] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1189), 1, sym_comment, - ACTIONS(6247), 11, + ACTIONS(6392), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -94492,8 +94893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 30, + ACTIONS(6390), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94524,12 +94924,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [41277] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1190), 1, sym_comment, - ACTIONS(6375), 11, + ACTIONS(6520), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -94540,8 +94941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 30, + ACTIONS(6518), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94572,12 +94972,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [41329] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1191), 1, sym_comment, - ACTIONS(6243), 11, + ACTIONS(6388), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -94588,8 +94989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 30, + ACTIONS(6386), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94620,12 +95020,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [41381] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1192), 1, sym_comment, - ACTIONS(6239), 11, + ACTIONS(6384), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -94636,8 +95037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 30, + ACTIONS(6382), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94668,12 +95068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [41433] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1193), 1, sym_comment, - ACTIONS(6235), 11, + ACTIONS(6380), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -94684,8 +95085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 30, + ACTIONS(6378), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94716,12 +95116,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [41485] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1194), 1, sym_comment, - ACTIONS(6227), 11, + ACTIONS(6372), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -94732,8 +95133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 30, + ACTIONS(6370), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94764,12 +95164,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [41537] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1195), 1, sym_comment, - ACTIONS(6223), 11, + ACTIONS(6368), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -94780,8 +95181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 30, + ACTIONS(6366), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94812,12 +95212,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [41589] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1196), 1, sym_comment, - ACTIONS(6219), 11, + ACTIONS(6364), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -94828,8 +95229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 30, + ACTIONS(6362), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94860,12 +95260,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [41641] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1197), 1, sym_comment, - ACTIONS(6215), 11, + ACTIONS(6360), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -94876,8 +95277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 30, + ACTIONS(6358), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94908,12 +95308,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [41693] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1198), 1, sym_comment, - ACTIONS(6207), 11, + ACTIONS(6352), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -94924,8 +95325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 30, + ACTIONS(6350), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94956,12 +95356,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [41745] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1199), 1, sym_comment, - ACTIONS(6179), 11, + ACTIONS(6324), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -94972,8 +95373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 30, + ACTIONS(6322), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95004,12 +95404,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [41797] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1200), 1, sym_comment, - ACTIONS(6199), 11, + ACTIONS(6344), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -95020,8 +95421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 30, + ACTIONS(6342), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95052,12 +95452,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [41849] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1201), 1, sym_comment, - ACTIONS(6183), 11, + ACTIONS(6328), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -95068,8 +95469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 30, + ACTIONS(6326), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95100,12 +95500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [41901] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1202), 1, sym_comment, - ACTIONS(6413), 11, + ACTIONS(6558), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -95116,8 +95517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6411), 30, + ACTIONS(6556), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95148,12 +95548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [41953] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1203), 1, sym_comment, - ACTIONS(6175), 11, + ACTIONS(6320), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -95164,8 +95565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 30, + ACTIONS(6318), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95196,12 +95596,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [42005] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1204), 1, sym_comment, - ACTIONS(6167), 11, + ACTIONS(6312), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -95212,8 +95613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 30, + ACTIONS(6310), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95244,12 +95644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [42057] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1205), 1, sym_comment, - ACTIONS(6163), 11, + ACTIONS(6308), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -95260,8 +95661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 30, + ACTIONS(6306), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95292,12 +95692,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [42109] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1206), 1, sym_comment, - ACTIONS(6159), 11, + ACTIONS(6304), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -95308,8 +95709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 30, + ACTIONS(6302), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95340,12 +95740,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [42161] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1207), 1, sym_comment, - ACTIONS(6413), 12, + ACTIONS(6558), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -95357,8 +95758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6411), 29, + ACTIONS(6556), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95388,12 +95788,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [42213] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1208), 1, sym_comment, - ACTIONS(6155), 11, + ACTIONS(6300), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -95404,8 +95805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 30, + ACTIONS(6298), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95436,12 +95836,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [42265] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1209), 1, sym_comment, - ACTIONS(6151), 11, + ACTIONS(6296), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -95452,8 +95853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 30, + ACTIONS(6294), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95484,12 +95884,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [42317] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1210), 1, sym_comment, - ACTIONS(6147), 11, + ACTIONS(6292), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -95500,8 +95901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 30, + ACTIONS(6290), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95532,12 +95932,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [42369] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1211), 1, sym_comment, - ACTIONS(6143), 11, + ACTIONS(6288), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -95548,8 +95949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 30, + ACTIONS(6286), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95580,12 +95980,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [42421] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1212), 1, sym_comment, - ACTIONS(6359), 11, + ACTIONS(6504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -95596,8 +95997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 30, + ACTIONS(6502), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95628,12 +96028,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [42473] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1213), 1, sym_comment, - ACTIONS(6353), 11, + ACTIONS(6498), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -95644,8 +96045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 30, + ACTIONS(6496), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95676,12 +96076,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [42525] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1214), 1, sym_comment, - ACTIONS(6349), 11, + ACTIONS(6494), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -95692,8 +96093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 30, + ACTIONS(6492), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95724,12 +96124,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [42577] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1215), 1, sym_comment, - ACTIONS(6345), 11, + ACTIONS(6490), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -95740,8 +96141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 30, + ACTIONS(6488), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95772,12 +96172,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [42629] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1216), 1, sym_comment, - ACTIONS(6341), 11, + ACTIONS(6486), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -95788,8 +96189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 30, + ACTIONS(6484), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95820,12 +96220,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [42681] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1217), 1, sym_comment, - ACTIONS(6337), 11, + ACTIONS(6482), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -95836,8 +96237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 30, + ACTIONS(6480), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95868,12 +96268,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [42733] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1218), 1, sym_comment, - ACTIONS(6333), 11, + ACTIONS(6478), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -95884,8 +96285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 30, + ACTIONS(6476), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95916,12 +96316,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [42785] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1219), 1, sym_comment, - ACTIONS(6329), 11, + ACTIONS(6474), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -95932,8 +96333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 30, + ACTIONS(6472), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95964,12 +96364,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [42837] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1220), 1, sym_comment, - ACTIONS(6375), 11, + ACTIONS(6520), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -95980,8 +96381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 30, + ACTIONS(6518), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96012,12 +96412,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [42889] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1221), 1, sym_comment, - ACTIONS(6323), 11, + ACTIONS(6468), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -96028,8 +96429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 30, + ACTIONS(6466), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96060,12 +96460,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [42941] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1222), 1, sym_comment, - ACTIONS(6283), 11, + ACTIONS(6428), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -96076,8 +96477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 30, + ACTIONS(6426), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96108,12 +96508,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [42993] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1223), 1, sym_comment, - ACTIONS(6263), 11, + ACTIONS(6408), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -96124,8 +96525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 30, + ACTIONS(6406), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96156,12 +96556,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [43045] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1224), 1, sym_comment, - ACTIONS(6231), 11, + ACTIONS(6376), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -96172,8 +96573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 30, + ACTIONS(6374), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96204,12 +96604,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [43097] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1225), 1, sym_comment, - ACTIONS(6211), 11, + ACTIONS(6356), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -96220,8 +96621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 30, + ACTIONS(6354), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96252,12 +96652,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [43149] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1226), 1, sym_comment, - ACTIONS(6191), 11, + ACTIONS(6336), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -96268,8 +96669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 30, + ACTIONS(6334), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96300,12 +96700,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [43201] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1227), 1, sym_comment, - ACTIONS(6187), 11, + ACTIONS(6332), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -96316,8 +96717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 30, + ACTIONS(6330), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96348,12 +96748,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [43253] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1228), 1, sym_comment, - ACTIONS(6199), 11, + ACTIONS(6344), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -96364,8 +96765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 30, + ACTIONS(6342), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96396,12 +96796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [43305] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1229), 1, sym_comment, - ACTIONS(6171), 11, + ACTIONS(6316), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -96412,8 +96813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 30, + ACTIONS(6314), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96444,12 +96844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [43357] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1230), 1, sym_comment, - ACTIONS(6319), 11, + ACTIONS(6464), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -96460,8 +96861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 30, + ACTIONS(6462), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96492,12 +96892,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [43409] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1231), 1, sym_comment, - ACTIONS(6315), 11, + ACTIONS(6460), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -96508,8 +96909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 30, + ACTIONS(6458), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96540,12 +96940,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [43461] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1232), 1, sym_comment, - ACTIONS(6311), 11, + ACTIONS(6456), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -96556,8 +96957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 30, + ACTIONS(6454), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96588,12 +96988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [43513] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1233), 1, sym_comment, - ACTIONS(6135), 11, + ACTIONS(6280), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -96604,8 +97005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 30, + ACTIONS(6278), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96636,12 +97036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [43565] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1234), 1, sym_comment, - ACTIONS(6307), 11, + ACTIONS(6452), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -96652,8 +97053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 30, + ACTIONS(6450), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96684,12 +97084,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [43617] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1235), 1, sym_comment, - ACTIONS(6303), 11, + ACTIONS(6448), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -96700,8 +97101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 30, + ACTIONS(6446), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96732,12 +97132,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [43669] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1236), 1, sym_comment, - ACTIONS(6299), 11, + ACTIONS(6444), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -96748,8 +97149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 30, + ACTIONS(6442), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96780,12 +97180,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [43721] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1237), 1, sym_comment, - ACTIONS(6295), 11, + ACTIONS(6440), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -96796,8 +97197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 30, + ACTIONS(6438), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96828,12 +97228,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [43773] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1238), 1, sym_comment, - ACTIONS(6291), 11, + ACTIONS(6436), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -96844,8 +97245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 30, + ACTIONS(6434), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96876,12 +97276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [43825] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1239), 1, sym_comment, - ACTIONS(6287), 11, + ACTIONS(6432), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -96892,8 +97293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 30, + ACTIONS(6430), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96924,12 +97324,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [43877] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1240), 1, sym_comment, - ACTIONS(6279), 11, + ACTIONS(6424), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -96940,8 +97341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 30, + ACTIONS(6422), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96972,12 +97372,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [43929] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1241), 1, sym_comment, - ACTIONS(6275), 11, + ACTIONS(6420), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -96988,8 +97389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 30, + ACTIONS(6418), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97020,12 +97420,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [43981] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1242), 1, sym_comment, - ACTIONS(6271), 11, + ACTIONS(6416), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -97036,8 +97437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 30, + ACTIONS(6414), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97068,12 +97468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [44033] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1243), 1, sym_comment, - ACTIONS(6267), 11, + ACTIONS(6412), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -97084,8 +97485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 30, + ACTIONS(6410), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97116,12 +97516,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [44085] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1244), 1, sym_comment, - ACTIONS(6259), 11, + ACTIONS(6404), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -97132,8 +97533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 30, + ACTIONS(6402), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97164,12 +97564,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [44137] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1245), 1, sym_comment, - ACTIONS(6255), 11, + ACTIONS(6400), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -97180,8 +97581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 30, + ACTIONS(6398), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97212,12 +97612,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [44189] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1246), 1, sym_comment, - ACTIONS(6251), 11, + ACTIONS(6396), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -97228,8 +97629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 30, + ACTIONS(6394), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97260,12 +97660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [44241] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1247), 1, sym_comment, - ACTIONS(6247), 11, + ACTIONS(6392), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -97276,8 +97677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 30, + ACTIONS(6390), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97308,12 +97708,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [44293] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1248), 1, sym_comment, - ACTIONS(6243), 11, + ACTIONS(6388), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -97324,8 +97725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 30, + ACTIONS(6386), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97356,12 +97756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [44345] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1249), 1, sym_comment, - ACTIONS(6239), 11, + ACTIONS(6384), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -97372,8 +97773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 30, + ACTIONS(6382), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97404,12 +97804,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [44397] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1250), 1, sym_comment, - ACTIONS(6235), 11, + ACTIONS(6380), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -97420,8 +97821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 30, + ACTIONS(6378), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97452,12 +97852,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [44449] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1251), 1, sym_comment, - ACTIONS(6227), 11, + ACTIONS(6372), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -97468,8 +97869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 30, + ACTIONS(6370), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97500,12 +97900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [44501] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1252), 1, sym_comment, - ACTIONS(6223), 11, + ACTIONS(6368), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -97516,8 +97917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 30, + ACTIONS(6366), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97548,12 +97948,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [44553] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1253), 1, sym_comment, - ACTIONS(6219), 11, + ACTIONS(6364), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -97564,8 +97965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 30, + ACTIONS(6362), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97596,12 +97996,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [44605] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1254), 1, sym_comment, - ACTIONS(6215), 11, + ACTIONS(6360), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -97612,8 +98013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 30, + ACTIONS(6358), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97644,12 +98044,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [44657] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1255), 1, sym_comment, - ACTIONS(6207), 11, + ACTIONS(6352), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -97660,8 +98061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 30, + ACTIONS(6350), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97692,12 +98092,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [44709] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1256), 1, sym_comment, - ACTIONS(6203), 11, + ACTIONS(6348), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -97708,8 +98109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 30, + ACTIONS(6346), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97740,12 +98140,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [44761] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1257), 1, sym_comment, - ACTIONS(6199), 11, + ACTIONS(6344), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -97756,8 +98157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 30, + ACTIONS(6342), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97788,12 +98188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [44813] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1258), 1, sym_comment, - ACTIONS(6183), 11, + ACTIONS(6328), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -97804,8 +98205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 30, + ACTIONS(6326), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97836,12 +98236,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [44865] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1259), 1, sym_comment, - ACTIONS(6413), 11, + ACTIONS(6558), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -97852,8 +98253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6411), 30, + ACTIONS(6556), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97884,12 +98284,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [44917] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1260), 1, sym_comment, - ACTIONS(6175), 11, + ACTIONS(6320), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -97900,8 +98301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 30, + ACTIONS(6318), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97932,12 +98332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [44969] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1261), 1, sym_comment, - ACTIONS(6167), 11, + ACTIONS(6312), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -97948,8 +98349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 30, + ACTIONS(6310), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97980,12 +98380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [45021] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1262), 1, sym_comment, - ACTIONS(6163), 11, + ACTIONS(6308), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -97996,8 +98397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 30, + ACTIONS(6306), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98028,12 +98428,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [45073] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1263), 1, sym_comment, - ACTIONS(6159), 11, + ACTIONS(6304), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -98044,8 +98445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 30, + ACTIONS(6302), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98076,12 +98476,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [45125] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1264), 1, sym_comment, - ACTIONS(6155), 11, + ACTIONS(6300), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -98092,8 +98493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 30, + ACTIONS(6298), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98124,12 +98524,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [45177] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1265), 1, sym_comment, - ACTIONS(6151), 11, + ACTIONS(6296), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -98140,8 +98541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 30, + ACTIONS(6294), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98172,12 +98572,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [45229] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1266), 1, sym_comment, - ACTIONS(6147), 11, + ACTIONS(6292), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -98188,8 +98589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 30, + ACTIONS(6290), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98220,12 +98620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [45281] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1267), 1, sym_comment, - ACTIONS(6143), 11, + ACTIONS(6288), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -98236,8 +98637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 30, + ACTIONS(6286), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98268,12 +98668,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [45333] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1268), 1, sym_comment, - ACTIONS(6359), 11, + ACTIONS(6504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -98284,8 +98685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 30, + ACTIONS(6502), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98316,12 +98716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [45385] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1269), 1, sym_comment, - ACTIONS(6353), 11, + ACTIONS(6498), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -98332,8 +98733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 30, + ACTIONS(6496), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98364,12 +98764,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [45437] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1270), 1, sym_comment, - ACTIONS(6349), 11, + ACTIONS(6494), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -98380,8 +98781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 30, + ACTIONS(6492), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98412,12 +98812,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [45489] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1271), 1, sym_comment, - ACTIONS(6345), 11, + ACTIONS(6490), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -98428,8 +98829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 30, + ACTIONS(6488), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98460,12 +98860,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [45541] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1272), 1, sym_comment, - ACTIONS(6367), 11, + ACTIONS(6512), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -98476,8 +98877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 30, + ACTIONS(6510), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98508,12 +98908,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [45593] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1273), 1, sym_comment, - ACTIONS(6341), 11, + ACTIONS(6486), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -98524,8 +98925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 30, + ACTIONS(6484), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98556,12 +98956,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [45645] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1274), 1, sym_comment, - ACTIONS(6337), 11, + ACTIONS(6482), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -98572,8 +98973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 30, + ACTIONS(6480), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98604,12 +99004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [45697] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1275), 1, sym_comment, - ACTIONS(6333), 11, + ACTIONS(6478), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -98620,8 +99021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 30, + ACTIONS(6476), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98652,12 +99052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [45749] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1276), 1, sym_comment, - ACTIONS(6329), 11, + ACTIONS(6474), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -98668,8 +99069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 30, + ACTIONS(6472), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98700,12 +99100,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [45801] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1277), 1, sym_comment, - ACTIONS(6375), 11, + ACTIONS(6520), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -98716,8 +99117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 30, + ACTIONS(6518), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98748,12 +99148,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [45853] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1278), 1, sym_comment, - ACTIONS(6323), 11, + ACTIONS(6468), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -98764,8 +99165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 30, + ACTIONS(6466), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98796,12 +99196,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [45905] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1279), 1, sym_comment, - ACTIONS(6283), 11, + ACTIONS(6428), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -98812,8 +99213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 30, + ACTIONS(6426), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98844,12 +99244,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [45957] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1280), 1, sym_comment, - ACTIONS(6263), 11, + ACTIONS(6408), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -98860,8 +99261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 30, + ACTIONS(6406), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98892,12 +99292,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [46009] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1281), 1, sym_comment, - ACTIONS(6231), 11, + ACTIONS(6376), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -98908,8 +99309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 30, + ACTIONS(6374), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98940,12 +99340,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [46061] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1282), 1, sym_comment, - ACTIONS(6211), 11, + ACTIONS(6356), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -98956,8 +99357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 30, + ACTIONS(6354), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98988,12 +99388,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [46113] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1283), 1, sym_comment, - ACTIONS(6191), 11, + ACTIONS(6336), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -99004,8 +99405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 30, + ACTIONS(6334), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99036,12 +99436,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [46165] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1284), 1, sym_comment, - ACTIONS(6187), 11, + ACTIONS(6332), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -99052,8 +99453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 30, + ACTIONS(6330), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99084,12 +99484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [46217] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1285), 1, sym_comment, - ACTIONS(6179), 11, + ACTIONS(6324), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -99100,8 +99501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 30, + ACTIONS(6322), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99132,12 +99532,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [46269] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1286), 1, sym_comment, - ACTIONS(6171), 11, + ACTIONS(6316), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -99148,8 +99549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 30, + ACTIONS(6314), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99180,12 +99580,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [46321] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1287), 1, sym_comment, - ACTIONS(6319), 11, + ACTIONS(6464), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -99196,8 +99597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 30, + ACTIONS(6462), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99228,12 +99628,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [46373] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1288), 1, sym_comment, - ACTIONS(6315), 11, + ACTIONS(6460), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -99244,8 +99645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 30, + ACTIONS(6458), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99276,12 +99676,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [46425] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1289), 1, sym_comment, - ACTIONS(6311), 11, + ACTIONS(6456), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -99292,8 +99693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 30, + ACTIONS(6454), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99324,12 +99724,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [46477] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1290), 1, sym_comment, - ACTIONS(6135), 11, + ACTIONS(6280), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -99340,8 +99741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 30, + ACTIONS(6278), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99372,12 +99772,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [46529] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1291), 1, sym_comment, - ACTIONS(6307), 11, + ACTIONS(6452), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -99388,8 +99789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 30, + ACTIONS(6450), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99420,12 +99820,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [46581] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1292), 1, sym_comment, - ACTIONS(6303), 11, + ACTIONS(6448), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -99436,8 +99837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 30, + ACTIONS(6446), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99468,12 +99868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [46633] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1293), 1, sym_comment, - ACTIONS(6299), 11, + ACTIONS(6444), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -99484,8 +99885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 30, + ACTIONS(6442), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99516,12 +99916,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [46685] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1294), 1, sym_comment, - ACTIONS(6295), 11, + ACTIONS(6440), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -99532,8 +99933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 30, + ACTIONS(6438), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99564,12 +99964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [46737] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1295), 1, sym_comment, - ACTIONS(6291), 11, + ACTIONS(6436), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -99580,8 +99981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 30, + ACTIONS(6434), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99612,12 +100012,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [46789] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1296), 1, sym_comment, - ACTIONS(6287), 11, + ACTIONS(6432), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -99628,8 +100029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 30, + ACTIONS(6430), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99660,12 +100060,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [46841] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1297), 1, sym_comment, - ACTIONS(6279), 11, + ACTIONS(6424), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -99676,8 +100077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 30, + ACTIONS(6422), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99708,12 +100108,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [46893] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1298), 1, sym_comment, - ACTIONS(6275), 11, + ACTIONS(6420), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -99724,8 +100125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 30, + ACTIONS(6418), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99756,12 +100156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [46945] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1299), 1, sym_comment, - ACTIONS(6271), 11, + ACTIONS(6416), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -99772,8 +100173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 30, + ACTIONS(6414), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99804,12 +100204,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [46997] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1300), 1, sym_comment, - ACTIONS(6267), 11, + ACTIONS(6412), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -99820,8 +100221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 30, + ACTIONS(6410), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99852,12 +100252,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [47049] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1301), 1, sym_comment, - ACTIONS(6259), 11, + ACTIONS(6404), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -99868,8 +100269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 30, + ACTIONS(6402), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99900,12 +100300,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [47101] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1302), 1, sym_comment, - ACTIONS(6255), 11, + ACTIONS(6400), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -99916,8 +100317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 30, + ACTIONS(6398), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99948,12 +100348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [47153] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1303), 1, sym_comment, - ACTIONS(6363), 11, + ACTIONS(6508), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -99964,8 +100365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 30, + ACTIONS(6506), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99996,12 +100396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [47205] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1304), 1, sym_comment, - ACTIONS(6251), 11, + ACTIONS(6396), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -100012,8 +100413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 30, + ACTIONS(6394), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100044,12 +100444,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [47257] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1305), 1, sym_comment, - ACTIONS(6247), 11, + ACTIONS(6392), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -100060,8 +100461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 30, + ACTIONS(6390), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100092,12 +100492,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [47309] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1306), 1, sym_comment, - ACTIONS(6243), 11, + ACTIONS(6388), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -100108,8 +100509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 30, + ACTIONS(6386), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100140,12 +100540,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [47361] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1307), 1, sym_comment, - ACTIONS(6239), 11, + ACTIONS(6384), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -100156,8 +100557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 30, + ACTIONS(6382), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100188,12 +100588,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [47413] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1308), 1, sym_comment, - ACTIONS(6235), 11, + ACTIONS(6380), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -100204,8 +100605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 30, + ACTIONS(6378), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100236,12 +100636,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [47465] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1309), 1, sym_comment, - ACTIONS(6227), 11, + ACTIONS(6372), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -100252,8 +100653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 30, + ACTIONS(6370), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100284,12 +100684,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [47517] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1310), 1, sym_comment, - ACTIONS(6223), 11, + ACTIONS(6368), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -100300,8 +100701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 30, + ACTIONS(6366), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100332,12 +100732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [47569] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1311), 1, sym_comment, - ACTIONS(6219), 11, + ACTIONS(6364), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -100348,8 +100749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 30, + ACTIONS(6362), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100380,12 +100780,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [47621] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1312), 1, sym_comment, - ACTIONS(6215), 11, + ACTIONS(6360), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -100396,8 +100797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 30, + ACTIONS(6358), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100428,12 +100828,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [47673] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1313), 1, sym_comment, - ACTIONS(6207), 11, + ACTIONS(6352), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -100444,8 +100845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 30, + ACTIONS(6350), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100476,12 +100876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [47725] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1314), 1, sym_comment, - ACTIONS(6203), 11, + ACTIONS(6348), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -100492,8 +100893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 30, + ACTIONS(6346), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100524,12 +100924,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [47777] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1315), 1, sym_comment, - ACTIONS(6271), 11, + ACTIONS(6416), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -100540,8 +100941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 30, + ACTIONS(6414), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100572,12 +100972,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [47829] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1316), 1, sym_comment, - ACTIONS(6183), 11, + ACTIONS(6328), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -100588,8 +100989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 30, + ACTIONS(6326), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100620,12 +101020,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [47881] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1317), 1, sym_comment, - ACTIONS(6413), 11, + ACTIONS(6558), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -100636,8 +101037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6411), 30, + ACTIONS(6556), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100668,12 +101068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [47933] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1318), 1, sym_comment, - ACTIONS(6175), 11, + ACTIONS(6320), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -100684,8 +101085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 30, + ACTIONS(6318), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100716,12 +101116,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [47985] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1319), 1, sym_comment, - ACTIONS(6167), 11, + ACTIONS(6312), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -100732,8 +101133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 30, + ACTIONS(6310), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100764,12 +101164,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [48037] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1320), 1, sym_comment, - ACTIONS(6163), 11, + ACTIONS(6308), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -100780,8 +101181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 30, + ACTIONS(6306), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100812,12 +101212,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [48089] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1321), 1, sym_comment, - ACTIONS(6159), 11, + ACTIONS(6304), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -100828,8 +101229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 30, + ACTIONS(6302), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100860,12 +101260,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [48141] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1322), 1, sym_comment, - ACTIONS(6155), 11, + ACTIONS(6300), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -100876,8 +101277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 30, + ACTIONS(6298), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100908,12 +101308,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [48193] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1323), 1, sym_comment, - ACTIONS(6151), 11, + ACTIONS(6296), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -100924,8 +101325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 30, + ACTIONS(6294), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100956,12 +101356,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [48245] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1324), 1, sym_comment, - ACTIONS(6147), 11, + ACTIONS(6292), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -100972,8 +101373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 30, + ACTIONS(6290), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101004,12 +101404,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [48297] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1325), 1, sym_comment, - ACTIONS(6143), 11, + ACTIONS(6288), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -101020,8 +101421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 30, + ACTIONS(6286), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101052,12 +101452,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [48349] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1326), 1, sym_comment, - ACTIONS(6359), 11, + ACTIONS(6504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -101068,8 +101469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 30, + ACTIONS(6502), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101100,12 +101500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [48401] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1327), 1, sym_comment, - ACTIONS(6353), 11, + ACTIONS(6498), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -101116,8 +101517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 30, + ACTIONS(6496), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101148,12 +101548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [48453] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1328), 1, sym_comment, - ACTIONS(6349), 11, + ACTIONS(6494), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -101164,8 +101565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 30, + ACTIONS(6492), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101196,12 +101596,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [48505] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1329), 1, sym_comment, - ACTIONS(6345), 11, + ACTIONS(6490), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -101212,8 +101613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 30, + ACTIONS(6488), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101244,12 +101644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [48557] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1330), 1, sym_comment, - ACTIONS(6341), 11, + ACTIONS(6486), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -101260,8 +101661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 30, + ACTIONS(6484), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101292,12 +101692,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [48609] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1331), 1, sym_comment, - ACTIONS(6367), 11, + ACTIONS(6512), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -101308,8 +101709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 30, + ACTIONS(6510), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101340,12 +101740,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [48661] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1332), 1, sym_comment, - ACTIONS(6337), 11, + ACTIONS(6482), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -101356,8 +101757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 30, + ACTIONS(6480), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101388,12 +101788,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [48713] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1333), 1, sym_comment, - ACTIONS(6333), 11, + ACTIONS(6478), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -101404,8 +101805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 30, + ACTIONS(6476), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101436,12 +101836,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [48765] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1334), 1, sym_comment, - ACTIONS(6329), 11, + ACTIONS(6474), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -101452,8 +101853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 30, + ACTIONS(6472), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101484,12 +101884,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [48817] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1335), 1, sym_comment, - ACTIONS(6323), 11, + ACTIONS(6468), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -101500,8 +101901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 30, + ACTIONS(6466), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101532,12 +101932,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [48869] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1336), 1, sym_comment, - ACTIONS(6283), 11, + ACTIONS(6428), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -101548,8 +101949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 30, + ACTIONS(6426), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101580,12 +101980,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [48921] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1337), 1, sym_comment, - ACTIONS(6263), 11, + ACTIONS(6408), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -101596,8 +101997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 30, + ACTIONS(6406), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101628,12 +102028,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [48973] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1338), 1, sym_comment, - ACTIONS(6231), 11, + ACTIONS(6376), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -101644,8 +102045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 30, + ACTIONS(6374), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101676,12 +102076,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [49025] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1339), 1, sym_comment, - ACTIONS(6211), 11, + ACTIONS(6356), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -101692,8 +102093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 30, + ACTIONS(6354), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101724,12 +102124,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [49077] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1340), 1, sym_comment, - ACTIONS(6191), 11, + ACTIONS(6336), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -101740,8 +102141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 30, + ACTIONS(6334), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101772,12 +102172,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [49129] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1341), 1, sym_comment, - ACTIONS(6187), 11, + ACTIONS(6332), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -101788,8 +102189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 30, + ACTIONS(6330), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101820,12 +102220,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [49181] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1342), 1, sym_comment, - ACTIONS(6179), 11, + ACTIONS(6324), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -101836,8 +102237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 30, + ACTIONS(6322), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101868,12 +102268,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [49233] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1343), 1, sym_comment, - ACTIONS(6171), 11, + ACTIONS(6316), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -101884,8 +102285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 30, + ACTIONS(6314), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101916,12 +102316,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [49285] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1344), 1, sym_comment, - ACTIONS(6319), 11, + ACTIONS(6464), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -101932,8 +102333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 30, + ACTIONS(6462), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101964,12 +102364,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [49337] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1345), 1, sym_comment, - ACTIONS(6315), 11, + ACTIONS(6460), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -101980,8 +102381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 30, + ACTIONS(6458), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102012,12 +102412,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [49389] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1346), 1, sym_comment, - ACTIONS(6311), 11, + ACTIONS(6456), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -102028,8 +102429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 30, + ACTIONS(6454), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102060,12 +102460,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [49441] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1347), 1, sym_comment, - ACTIONS(6135), 11, + ACTIONS(6280), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -102076,8 +102477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 30, + ACTIONS(6278), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102108,12 +102508,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [49493] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1348), 1, sym_comment, - ACTIONS(6307), 11, + ACTIONS(6452), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -102124,8 +102525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 30, + ACTIONS(6450), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102156,12 +102556,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [49545] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1349), 1, sym_comment, - ACTIONS(6303), 11, + ACTIONS(6448), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -102172,8 +102573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 30, + ACTIONS(6446), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102204,12 +102604,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [49597] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1350), 1, sym_comment, - ACTIONS(6299), 11, + ACTIONS(6444), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -102220,8 +102621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 30, + ACTIONS(6442), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102252,12 +102652,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [49649] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1351), 1, sym_comment, - ACTIONS(6295), 11, + ACTIONS(6440), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -102268,8 +102669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 30, + ACTIONS(6438), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102300,12 +102700,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [49701] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1352), 1, sym_comment, - ACTIONS(6291), 11, + ACTIONS(6436), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -102316,8 +102717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 30, + ACTIONS(6434), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102348,12 +102748,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [49753] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1353), 1, sym_comment, - ACTIONS(6287), 11, + ACTIONS(6432), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -102364,8 +102765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 30, + ACTIONS(6430), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102396,12 +102796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [49805] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1354), 1, sym_comment, - ACTIONS(6279), 11, + ACTIONS(6424), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -102412,8 +102813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 30, + ACTIONS(6422), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102444,12 +102844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [49857] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1355), 1, sym_comment, - ACTIONS(6275), 11, + ACTIONS(6420), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -102460,8 +102861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 30, + ACTIONS(6418), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102492,12 +102892,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [49909] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1356), 1, sym_comment, - ACTIONS(6223), 11, + ACTIONS(6368), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -102508,8 +102909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 30, + ACTIONS(6366), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102540,12 +102940,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [49961] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1357), 1, sym_comment, - ACTIONS(6267), 11, + ACTIONS(6412), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -102556,8 +102957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 30, + ACTIONS(6410), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102588,12 +102988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [50013] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1358), 1, sym_comment, - ACTIONS(6259), 11, + ACTIONS(6404), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -102604,8 +103005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 30, + ACTIONS(6402), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102636,12 +103036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [50065] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1359), 1, sym_comment, - ACTIONS(6255), 11, + ACTIONS(6400), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -102652,8 +103053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 30, + ACTIONS(6398), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102684,12 +103084,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [50117] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1360), 1, sym_comment, - ACTIONS(6251), 11, + ACTIONS(6396), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -102700,8 +103101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 30, + ACTIONS(6394), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102732,12 +103132,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [50169] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1361), 1, sym_comment, - ACTIONS(6247), 11, + ACTIONS(6392), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -102748,8 +103149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 30, + ACTIONS(6390), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102780,12 +103180,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [50221] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1362), 1, sym_comment, - ACTIONS(6363), 11, + ACTIONS(6508), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -102796,8 +103197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 30, + ACTIONS(6506), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102828,12 +103228,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [50273] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1363), 1, sym_comment, - ACTIONS(6243), 11, + ACTIONS(6388), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -102844,8 +103245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 30, + ACTIONS(6386), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102876,12 +103276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [50325] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1364), 1, sym_comment, - ACTIONS(6239), 11, + ACTIONS(6384), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -102892,8 +103293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 30, + ACTIONS(6382), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102924,12 +103324,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [50377] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1365), 1, sym_comment, - ACTIONS(6235), 11, + ACTIONS(6380), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -102940,8 +103341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 30, + ACTIONS(6378), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102972,12 +103372,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [50429] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1366), 1, sym_comment, - ACTIONS(6227), 11, + ACTIONS(6372), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -102988,8 +103389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 30, + ACTIONS(6370), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103020,12 +103420,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [50481] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1367), 1, sym_comment, - ACTIONS(6223), 11, + ACTIONS(6368), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -103036,8 +103437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 30, + ACTIONS(6366), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103068,12 +103468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [50533] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1368), 1, sym_comment, - ACTIONS(6219), 11, + ACTIONS(6364), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -103084,8 +103485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 30, + ACTIONS(6362), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103116,12 +103516,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [50585] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1369), 1, sym_comment, - ACTIONS(6215), 11, + ACTIONS(6360), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -103132,8 +103533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 30, + ACTIONS(6358), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103164,12 +103564,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [50637] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1370), 1, sym_comment, - ACTIONS(6207), 11, + ACTIONS(6352), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -103180,8 +103581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 30, + ACTIONS(6350), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103212,12 +103612,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [50689] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1371), 1, sym_comment, - ACTIONS(6203), 11, + ACTIONS(6348), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -103228,8 +103629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 30, + ACTIONS(6346), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103260,12 +103660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [50741] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1372), 1, sym_comment, - ACTIONS(6199), 11, + ACTIONS(6344), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -103276,8 +103677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 30, + ACTIONS(6342), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103308,12 +103708,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [50793] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1373), 1, sym_comment, - ACTIONS(6183), 11, + ACTIONS(6328), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -103324,8 +103725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 30, + ACTIONS(6326), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103356,12 +103756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [50845] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1374), 1, sym_comment, - ACTIONS(6413), 11, + ACTIONS(6558), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -103372,8 +103773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6411), 30, + ACTIONS(6556), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103404,12 +103804,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [50897] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1375), 1, sym_comment, - ACTIONS(6175), 11, + ACTIONS(6320), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -103420,8 +103821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 30, + ACTIONS(6318), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103452,12 +103852,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [50949] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1376), 1, sym_comment, - ACTIONS(6167), 11, + ACTIONS(6312), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -103468,8 +103869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 30, + ACTIONS(6310), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103500,12 +103900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [51001] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1377), 1, sym_comment, - ACTIONS(6163), 11, + ACTIONS(6308), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -103516,8 +103917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 30, + ACTIONS(6306), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103548,12 +103948,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [51053] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1378), 1, sym_comment, - ACTIONS(6159), 11, + ACTIONS(6304), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -103564,8 +103965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 30, + ACTIONS(6302), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103596,12 +103996,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [51105] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1379), 1, sym_comment, - ACTIONS(6155), 11, + ACTIONS(6300), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -103612,8 +104013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 30, + ACTIONS(6298), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103644,12 +104044,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [51157] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1380), 1, sym_comment, - ACTIONS(6151), 11, + ACTIONS(6296), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -103660,8 +104061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 30, + ACTIONS(6294), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103692,12 +104092,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [51209] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1381), 1, sym_comment, - ACTIONS(6147), 11, + ACTIONS(6292), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -103708,8 +104109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 30, + ACTIONS(6290), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103740,12 +104140,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [51261] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1382), 1, sym_comment, - ACTIONS(6143), 11, + ACTIONS(6288), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -103756,8 +104157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 30, + ACTIONS(6286), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103788,12 +104188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [51313] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1383), 1, sym_comment, - ACTIONS(6359), 11, + ACTIONS(6504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -103804,8 +104205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 30, + ACTIONS(6502), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103836,12 +104236,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [51365] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1384), 1, sym_comment, - ACTIONS(6353), 11, + ACTIONS(6498), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -103852,8 +104253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 30, + ACTIONS(6496), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103884,12 +104284,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [51417] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1385), 1, sym_comment, - ACTIONS(6349), 11, + ACTIONS(6494), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -103900,8 +104301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 30, + ACTIONS(6492), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103932,12 +104332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [51469] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1386), 1, sym_comment, - ACTIONS(6345), 11, + ACTIONS(6490), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -103948,8 +104349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 30, + ACTIONS(6488), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103980,12 +104380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [51521] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1387), 1, sym_comment, - ACTIONS(6341), 11, + ACTIONS(6486), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -103996,8 +104397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 30, + ACTIONS(6484), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104028,12 +104428,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [51573] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1388), 1, sym_comment, - ACTIONS(6337), 11, + ACTIONS(6482), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -104044,8 +104445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 30, + ACTIONS(6480), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104076,12 +104476,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [51625] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1389), 1, sym_comment, - ACTIONS(6333), 11, + ACTIONS(6478), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -104092,8 +104493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 30, + ACTIONS(6476), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104124,12 +104524,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [51677] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1390), 1, sym_comment, - ACTIONS(6367), 11, + ACTIONS(6512), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -104140,8 +104541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 30, + ACTIONS(6510), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104172,12 +104572,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [51729] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1391), 1, sym_comment, - ACTIONS(6329), 11, + ACTIONS(6474), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -104188,8 +104589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 30, + ACTIONS(6472), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104220,12 +104620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [51781] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1392), 1, sym_comment, - ACTIONS(6323), 11, + ACTIONS(6468), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -104236,8 +104637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 30, + ACTIONS(6466), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104268,12 +104668,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [51833] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1393), 1, sym_comment, - ACTIONS(6283), 11, + ACTIONS(6428), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -104284,8 +104685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 30, + ACTIONS(6426), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104316,12 +104716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [51885] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1394), 1, sym_comment, - ACTIONS(6263), 11, + ACTIONS(6408), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -104332,8 +104733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 30, + ACTIONS(6406), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104364,12 +104764,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [51937] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1395), 1, sym_comment, - ACTIONS(6231), 11, + ACTIONS(6376), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -104380,8 +104781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 30, + ACTIONS(6374), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104412,12 +104812,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [51989] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1396), 1, sym_comment, - ACTIONS(6363), 11, + ACTIONS(6508), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -104428,8 +104829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 30, + ACTIONS(6506), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104460,12 +104860,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [52041] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1397), 1, sym_comment, - ACTIONS(6211), 11, + ACTIONS(6356), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -104476,8 +104877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 30, + ACTIONS(6354), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104508,12 +104908,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [52093] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1398), 1, sym_comment, - ACTIONS(6191), 11, + ACTIONS(6336), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -104524,8 +104925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 30, + ACTIONS(6334), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104556,12 +104956,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [52145] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1399), 1, sym_comment, - ACTIONS(6187), 11, + ACTIONS(6332), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -104572,8 +104973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 30, + ACTIONS(6330), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104604,12 +105004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [52197] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1400), 1, sym_comment, - ACTIONS(6179), 11, + ACTIONS(6324), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -104620,8 +105021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 30, + ACTIONS(6322), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104652,12 +105052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [52249] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1401), 1, sym_comment, - ACTIONS(6171), 11, + ACTIONS(6316), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -104668,8 +105069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 30, + ACTIONS(6314), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104700,12 +105100,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [52301] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1402), 1, sym_comment, - ACTIONS(6319), 11, + ACTIONS(6464), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -104716,8 +105117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 30, + ACTIONS(6462), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104748,12 +105148,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [52353] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1403), 1, sym_comment, - ACTIONS(6315), 11, + ACTIONS(6460), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -104764,8 +105165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 30, + ACTIONS(6458), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104796,12 +105196,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [52405] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1404), 1, sym_comment, - ACTIONS(6311), 11, + ACTIONS(6456), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -104812,8 +105213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 30, + ACTIONS(6454), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104844,12 +105244,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [52457] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1405), 1, sym_comment, - ACTIONS(6135), 11, + ACTIONS(6280), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -104860,8 +105261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 30, + ACTIONS(6278), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104892,12 +105292,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [52509] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1406), 1, sym_comment, - ACTIONS(6307), 11, + ACTIONS(6452), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -104908,8 +105309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 30, + ACTIONS(6450), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104940,12 +105340,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [52561] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1407), 1, sym_comment, - ACTIONS(6303), 11, + ACTIONS(6448), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -104956,8 +105357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 30, + ACTIONS(6446), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104988,12 +105388,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [52613] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1408), 1, sym_comment, - ACTIONS(6299), 11, + ACTIONS(6444), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105004,8 +105405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 30, + ACTIONS(6442), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -105036,12 +105436,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [52665] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1409), 1, sym_comment, - ACTIONS(6295), 11, + ACTIONS(6440), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105052,8 +105453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 30, + ACTIONS(6438), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -105084,12 +105484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [52717] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1410), 1, sym_comment, - ACTIONS(6291), 11, + ACTIONS(6436), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105100,8 +105501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 30, + ACTIONS(6434), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -105132,12 +105532,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [52769] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1411), 1, sym_comment, - ACTIONS(6287), 11, + ACTIONS(6432), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105148,8 +105549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 30, + ACTIONS(6430), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -105180,12 +105580,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [52821] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1412), 1, sym_comment, - ACTIONS(6279), 11, + ACTIONS(6424), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105196,8 +105597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 30, + ACTIONS(6422), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -105228,12 +105628,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [52873] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1413), 1, sym_comment, - ACTIONS(6275), 11, + ACTIONS(6420), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105244,8 +105645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 30, + ACTIONS(6418), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -105276,12 +105676,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [52925] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1414), 1, sym_comment, - ACTIONS(6271), 11, + ACTIONS(6416), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105292,8 +105693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 30, + ACTIONS(6414), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -105324,12 +105724,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [52977] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1415), 1, sym_comment, - ACTIONS(6267), 11, + ACTIONS(6412), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105340,8 +105741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 30, + ACTIONS(6410), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -105372,12 +105772,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [53029] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1416), 1, sym_comment, - ACTIONS(6259), 11, + ACTIONS(6404), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105388,8 +105789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 30, + ACTIONS(6402), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -105420,12 +105820,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [53081] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1417), 1, sym_comment, - ACTIONS(6255), 11, + ACTIONS(6400), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105436,8 +105837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 30, + ACTIONS(6398), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -105468,12 +105868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [53133] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1418), 1, sym_comment, - ACTIONS(6251), 11, + ACTIONS(6396), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105484,8 +105885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 30, + ACTIONS(6394), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -105516,12 +105916,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [53185] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1419), 1, sym_comment, - ACTIONS(6247), 11, + ACTIONS(6392), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105532,8 +105933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 30, + ACTIONS(6390), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -105564,12 +105964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [53237] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1420), 1, sym_comment, - ACTIONS(6243), 11, + ACTIONS(6388), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105580,8 +105981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 30, + ACTIONS(6386), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -105612,12 +106012,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [53289] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1421), 1, sym_comment, - ACTIONS(6363), 11, + ACTIONS(6508), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105628,8 +106029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 30, + ACTIONS(6506), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -105660,12 +106060,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [53341] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1422), 1, sym_comment, - ACTIONS(6239), 11, + ACTIONS(6384), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105676,8 +106077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 30, + ACTIONS(6382), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -105708,12 +106108,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [53393] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1423), 1, sym_comment, - ACTIONS(6235), 11, + ACTIONS(6380), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105724,8 +106125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 30, + ACTIONS(6378), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -105756,12 +106156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [53445] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1424), 1, sym_comment, - ACTIONS(6227), 11, + ACTIONS(6372), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105772,8 +106173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 30, + ACTIONS(6370), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -105804,12 +106204,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [53497] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1425), 1, sym_comment, - ACTIONS(6323), 11, + ACTIONS(6468), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105820,8 +106221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 30, + ACTIONS(6466), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -105852,12 +106252,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [53549] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1426), 1, sym_comment, - ACTIONS(6367), 11, + ACTIONS(6512), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105868,8 +106269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 30, + ACTIONS(6510), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -105900,12 +106300,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [53601] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1427), 1, sym_comment, - ACTIONS(6219), 11, + ACTIONS(6364), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105916,8 +106317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 30, + ACTIONS(6362), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -105948,12 +106348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [53653] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1428), 1, sym_comment, - ACTIONS(6215), 11, + ACTIONS(6360), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -105964,8 +106365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 30, + ACTIONS(6358), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -105996,12 +106396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [53705] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1429), 1, sym_comment, - ACTIONS(6329), 11, + ACTIONS(6474), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106012,8 +106413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 30, + ACTIONS(6472), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106044,12 +106444,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [53757] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1430), 1, sym_comment, - ACTIONS(6333), 11, + ACTIONS(6478), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106060,8 +106461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 30, + ACTIONS(6476), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106092,12 +106492,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [53809] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1431), 1, sym_comment, - ACTIONS(6337), 11, + ACTIONS(6482), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106108,8 +106509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 30, + ACTIONS(6480), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106140,12 +106540,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [53861] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1432), 1, sym_comment, - ACTIONS(6341), 11, + ACTIONS(6486), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106156,8 +106557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 30, + ACTIONS(6484), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106188,12 +106588,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [53913] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1433), 1, sym_comment, - ACTIONS(6345), 11, + ACTIONS(6490), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106204,8 +106605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 30, + ACTIONS(6488), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106236,12 +106636,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [53965] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1434), 1, sym_comment, - ACTIONS(6349), 11, + ACTIONS(6494), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106252,8 +106653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 30, + ACTIONS(6492), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106284,12 +106684,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [54017] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1435), 1, sym_comment, - ACTIONS(6353), 11, + ACTIONS(6498), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106300,8 +106701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 30, + ACTIONS(6496), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106332,12 +106732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [54069] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1436), 1, sym_comment, - ACTIONS(6359), 11, + ACTIONS(6504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106348,8 +106749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 30, + ACTIONS(6502), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106380,12 +106780,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [54121] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1437), 1, sym_comment, - ACTIONS(6143), 11, + ACTIONS(6288), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106396,8 +106797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 30, + ACTIONS(6286), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106428,12 +106828,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [54173] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1438), 1, sym_comment, - ACTIONS(6147), 11, + ACTIONS(6292), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106444,8 +106845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 30, + ACTIONS(6290), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106476,12 +106876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [54225] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1439), 1, sym_comment, - ACTIONS(6151), 11, + ACTIONS(6296), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106492,8 +106893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 30, + ACTIONS(6294), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106524,12 +106924,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [54277] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1440), 1, sym_comment, - ACTIONS(6155), 11, + ACTIONS(6300), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106540,8 +106941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 30, + ACTIONS(6298), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106572,12 +106972,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [54329] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1441), 1, sym_comment, - ACTIONS(6159), 11, + ACTIONS(6304), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106588,8 +106989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 30, + ACTIONS(6302), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106620,12 +107020,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [54381] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1442), 1, sym_comment, - ACTIONS(6163), 11, + ACTIONS(6308), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106636,8 +107037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 30, + ACTIONS(6306), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106668,12 +107068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [54433] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1443), 1, sym_comment, - ACTIONS(6167), 11, + ACTIONS(6312), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106684,8 +107085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 30, + ACTIONS(6310), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106716,12 +107116,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [54485] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1444), 1, sym_comment, - ACTIONS(6175), 11, + ACTIONS(6320), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106732,8 +107133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 30, + ACTIONS(6318), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106764,12 +107164,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [54537] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1445), 1, sym_comment, - ACTIONS(6183), 11, + ACTIONS(6328), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106780,8 +107181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 30, + ACTIONS(6326), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106812,12 +107212,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [54589] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1446), 1, sym_comment, - ACTIONS(6199), 11, + ACTIONS(6344), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106828,8 +107229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 30, + ACTIONS(6342), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106860,12 +107260,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [54641] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1447), 1, sym_comment, - ACTIONS(6203), 11, + ACTIONS(6348), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106876,8 +107277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 30, + ACTIONS(6346), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106908,12 +107308,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [54693] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1448), 1, sym_comment, - ACTIONS(6207), 11, + ACTIONS(6352), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106924,8 +107325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 30, + ACTIONS(6350), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106956,12 +107356,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [54745] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1449), 1, sym_comment, - ACTIONS(6367), 11, + ACTIONS(6512), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -106972,8 +107373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 30, + ACTIONS(6510), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107004,12 +107404,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [54797] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1450), 1, sym_comment, - ACTIONS(6215), 11, + ACTIONS(6360), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107020,8 +107421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 30, + ACTIONS(6358), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107052,12 +107452,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [54849] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1451), 1, sym_comment, - ACTIONS(6219), 11, + ACTIONS(6364), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107068,8 +107469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 30, + ACTIONS(6362), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107100,12 +107500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [54901] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1452), 1, sym_comment, - ACTIONS(6223), 11, + ACTIONS(6368), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107116,8 +107517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 30, + ACTIONS(6366), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107148,12 +107548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [54953] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1453), 1, sym_comment, - ACTIONS(6227), 11, + ACTIONS(6372), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107164,8 +107565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 30, + ACTIONS(6370), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107196,12 +107596,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [55005] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1454), 1, sym_comment, - ACTIONS(6235), 11, + ACTIONS(6380), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107212,8 +107613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 30, + ACTIONS(6378), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107244,12 +107644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [55057] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1455), 1, sym_comment, - ACTIONS(6239), 11, + ACTIONS(6384), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107260,8 +107661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 30, + ACTIONS(6382), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107292,12 +107692,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [55109] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1456), 1, sym_comment, - ACTIONS(6243), 11, + ACTIONS(6388), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107308,8 +107709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 30, + ACTIONS(6386), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107340,12 +107740,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [55161] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1457), 1, sym_comment, - ACTIONS(6247), 11, + ACTIONS(6392), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107356,8 +107757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 30, + ACTIONS(6390), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107388,12 +107788,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [55213] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1458), 1, sym_comment, - ACTIONS(6251), 11, + ACTIONS(6396), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107404,8 +107805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 30, + ACTIONS(6394), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107436,12 +107836,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [55265] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1459), 1, sym_comment, - ACTIONS(6255), 11, + ACTIONS(6400), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107452,8 +107853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 30, + ACTIONS(6398), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107484,12 +107884,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [55317] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1460), 1, sym_comment, - ACTIONS(6259), 11, + ACTIONS(6404), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107500,8 +107901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 30, + ACTIONS(6402), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107532,12 +107932,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [55369] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1461), 1, sym_comment, - ACTIONS(6267), 11, + ACTIONS(6412), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107548,8 +107949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 30, + ACTIONS(6410), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107580,12 +107980,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [55421] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1462), 1, sym_comment, - ACTIONS(6271), 11, + ACTIONS(6416), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107596,8 +107997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 30, + ACTIONS(6414), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107628,12 +108028,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [55473] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1463), 1, sym_comment, - ACTIONS(6275), 11, + ACTIONS(6420), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107644,8 +108045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 30, + ACTIONS(6418), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107676,12 +108076,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [55525] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1464), 1, sym_comment, - ACTIONS(6279), 11, + ACTIONS(6424), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107692,8 +108093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 30, + ACTIONS(6422), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107724,12 +108124,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [55577] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1465), 1, sym_comment, - ACTIONS(6287), 11, + ACTIONS(6432), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107740,8 +108141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 30, + ACTIONS(6430), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107772,12 +108172,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [55629] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1466), 1, sym_comment, - ACTIONS(6291), 11, + ACTIONS(6436), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107788,8 +108189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 30, + ACTIONS(6434), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107820,12 +108220,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [55681] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1467), 1, sym_comment, - ACTIONS(6295), 11, + ACTIONS(6440), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107836,8 +108237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 30, + ACTIONS(6438), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107868,12 +108268,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [55733] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1468), 1, sym_comment, - ACTIONS(6299), 11, + ACTIONS(6444), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107884,8 +108285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 30, + ACTIONS(6442), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107916,12 +108316,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [55785] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1469), 1, sym_comment, - ACTIONS(6303), 11, + ACTIONS(6448), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107932,8 +108333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 30, + ACTIONS(6446), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107964,12 +108364,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [55837] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1470), 1, sym_comment, - ACTIONS(6307), 11, + ACTIONS(6452), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -107980,8 +108381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 30, + ACTIONS(6450), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108012,12 +108412,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [55889] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1471), 1, sym_comment, - ACTIONS(6135), 11, + ACTIONS(6280), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -108028,8 +108429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 30, + ACTIONS(6278), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108060,12 +108460,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [55941] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1472), 1, sym_comment, - ACTIONS(6311), 11, + ACTIONS(6456), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -108076,8 +108477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 30, + ACTIONS(6454), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108108,12 +108508,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [55993] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1473), 1, sym_comment, - ACTIONS(6315), 11, + ACTIONS(6460), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -108124,8 +108525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 30, + ACTIONS(6458), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108156,12 +108556,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [56045] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1474), 1, sym_comment, - ACTIONS(6319), 11, + ACTIONS(6464), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -108172,8 +108573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 30, + ACTIONS(6462), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108204,12 +108604,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [56097] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1475), 1, sym_comment, - ACTIONS(6171), 11, + ACTIONS(6316), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -108220,8 +108621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 30, + ACTIONS(6314), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108252,12 +108652,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [56149] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1476), 1, sym_comment, - ACTIONS(6179), 11, + ACTIONS(6324), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -108268,8 +108669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 30, + ACTIONS(6322), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108300,12 +108700,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [56201] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1477), 1, sym_comment, - ACTIONS(6187), 11, + ACTIONS(6332), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -108316,8 +108717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 30, + ACTIONS(6330), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108348,12 +108748,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [56253] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1478), 1, sym_comment, - ACTIONS(6191), 11, + ACTIONS(6336), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -108364,8 +108765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 30, + ACTIONS(6334), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108396,12 +108796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [56305] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1479), 1, sym_comment, - ACTIONS(6211), 11, + ACTIONS(6356), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -108412,8 +108813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 30, + ACTIONS(6354), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108444,12 +108844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [56357] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1480), 1, sym_comment, - ACTIONS(6363), 11, + ACTIONS(6508), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -108460,8 +108861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 30, + ACTIONS(6506), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108492,12 +108892,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [56409] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1481), 1, sym_comment, - ACTIONS(6231), 11, + ACTIONS(6376), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -108508,8 +108909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 30, + ACTIONS(6374), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108540,12 +108940,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [56461] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1482), 1, sym_comment, - ACTIONS(6263), 11, + ACTIONS(6408), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -108556,8 +108957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 30, + ACTIONS(6406), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108588,12 +108988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [56513] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1483), 1, sym_comment, - ACTIONS(6283), 11, + ACTIONS(6428), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -108604,8 +109005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 30, + ACTIONS(6426), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108636,12 +109036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [56565] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1484), 1, sym_comment, - ACTIONS(6323), 11, + ACTIONS(6468), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -108652,8 +109053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 30, + ACTIONS(6466), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108684,12 +109084,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [56617] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1485), 1, sym_comment, - ACTIONS(6159), 11, + ACTIONS(6304), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -108700,8 +109101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 30, + ACTIONS(6302), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108732,12 +109132,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [56669] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1486), 1, sym_comment, - ACTIONS(6207), 11, + ACTIONS(6352), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -108748,8 +109149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 30, + ACTIONS(6350), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108780,12 +109180,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [56721] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1487), 1, sym_comment, - ACTIONS(6203), 11, + ACTIONS(6348), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -108796,8 +109197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 30, + ACTIONS(6346), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108828,12 +109228,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [56773] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1488), 1, sym_comment, - ACTIONS(6329), 11, + ACTIONS(6474), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -108844,8 +109245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 30, + ACTIONS(6472), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108876,12 +109276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [56825] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1489), 1, sym_comment, - ACTIONS(6333), 11, + ACTIONS(6478), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -108892,8 +109293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 30, + ACTIONS(6476), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108924,12 +109324,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [56877] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1490), 1, sym_comment, - ACTIONS(6337), 11, + ACTIONS(6482), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -108940,8 +109341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 30, + ACTIONS(6480), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108972,12 +109372,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [56929] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1491), 1, sym_comment, - ACTIONS(6341), 11, + ACTIONS(6486), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -108988,8 +109389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 30, + ACTIONS(6484), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109020,12 +109420,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [56981] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1492), 1, sym_comment, - ACTIONS(6345), 11, + ACTIONS(6490), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109036,8 +109437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 30, + ACTIONS(6488), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109068,12 +109468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [57033] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1493), 1, sym_comment, - ACTIONS(6349), 11, + ACTIONS(6494), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109084,8 +109485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 30, + ACTIONS(6492), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109116,12 +109516,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [57085] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1494), 1, sym_comment, - ACTIONS(6353), 11, + ACTIONS(6498), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109132,8 +109533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 30, + ACTIONS(6496), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109164,12 +109564,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [57137] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1495), 1, sym_comment, - ACTIONS(6359), 11, + ACTIONS(6504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109180,8 +109581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 30, + ACTIONS(6502), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109212,12 +109612,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [57189] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1496), 1, sym_comment, - ACTIONS(6143), 11, + ACTIONS(6288), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109228,8 +109629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 30, + ACTIONS(6286), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109260,12 +109660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [57241] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1497), 1, sym_comment, - ACTIONS(6147), 11, + ACTIONS(6292), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109276,8 +109677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 30, + ACTIONS(6290), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109308,12 +109708,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [57293] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1498), 1, sym_comment, - ACTIONS(6151), 11, + ACTIONS(6296), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109324,8 +109725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 30, + ACTIONS(6294), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109356,12 +109756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [57345] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1499), 1, sym_comment, - ACTIONS(6155), 11, + ACTIONS(6300), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109372,8 +109773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 30, + ACTIONS(6298), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109404,12 +109804,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [57397] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1500), 1, sym_comment, - ACTIONS(6159), 11, + ACTIONS(6304), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109420,8 +109821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 30, + ACTIONS(6302), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109452,12 +109852,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [57449] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1501), 1, sym_comment, - ACTIONS(6163), 11, + ACTIONS(6308), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109468,8 +109869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 30, + ACTIONS(6306), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109500,12 +109900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [57501] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1502), 1, sym_comment, - ACTIONS(6167), 11, + ACTIONS(6312), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109516,8 +109917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 30, + ACTIONS(6310), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109548,12 +109948,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [57553] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1503), 1, sym_comment, - ACTIONS(6175), 11, + ACTIONS(6320), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109564,8 +109965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 30, + ACTIONS(6318), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109596,12 +109996,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [57605] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1504), 1, sym_comment, - ACTIONS(6183), 11, + ACTIONS(6328), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109612,8 +110013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 30, + ACTIONS(6326), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109644,12 +110044,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [57657] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1505), 1, sym_comment, - ACTIONS(6199), 11, + ACTIONS(6344), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109660,8 +110061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 30, + ACTIONS(6342), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109692,12 +110092,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [57709] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1506), 1, sym_comment, - ACTIONS(6203), 11, + ACTIONS(6348), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109708,8 +110109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 30, + ACTIONS(6346), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109740,12 +110140,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [57761] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1507), 1, sym_comment, - ACTIONS(6207), 11, + ACTIONS(6352), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109756,8 +110157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 30, + ACTIONS(6350), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109788,12 +110188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [57813] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1508), 1, sym_comment, - ACTIONS(6367), 11, + ACTIONS(6512), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109804,8 +110205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 30, + ACTIONS(6510), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109836,12 +110236,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [57865] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1509), 1, sym_comment, - ACTIONS(6215), 11, + ACTIONS(6360), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109852,8 +110253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 30, + ACTIONS(6358), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109884,12 +110284,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [57917] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1510), 1, sym_comment, - ACTIONS(6219), 11, + ACTIONS(6364), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109900,8 +110301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 30, + ACTIONS(6362), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109932,12 +110332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [57969] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1511), 1, sym_comment, - ACTIONS(6223), 11, + ACTIONS(6368), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109948,8 +110349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 30, + ACTIONS(6366), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109980,12 +110380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [58021] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1512), 1, sym_comment, - ACTIONS(6227), 11, + ACTIONS(6372), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109996,8 +110397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 30, + ACTIONS(6370), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110028,12 +110428,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [58073] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1513), 1, sym_comment, - ACTIONS(6235), 11, + ACTIONS(6380), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -110044,8 +110445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 30, + ACTIONS(6378), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110076,12 +110476,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [58125] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1514), 1, sym_comment, - ACTIONS(6239), 11, + ACTIONS(6384), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -110092,8 +110493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 30, + ACTIONS(6382), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110124,12 +110524,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [58177] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1515), 1, sym_comment, - ACTIONS(6243), 11, + ACTIONS(6388), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -110140,8 +110541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 30, + ACTIONS(6386), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110172,12 +110572,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [58229] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1516), 1, sym_comment, - ACTIONS(6247), 11, + ACTIONS(6392), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -110188,8 +110589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 30, + ACTIONS(6390), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110220,12 +110620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [58281] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1517), 1, sym_comment, - ACTIONS(6251), 11, + ACTIONS(6396), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -110236,8 +110637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 30, + ACTIONS(6394), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110268,12 +110668,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [58333] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1518), 1, sym_comment, - ACTIONS(6255), 11, + ACTIONS(6400), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -110284,8 +110685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 30, + ACTIONS(6398), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110316,12 +110716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [58385] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1519), 1, sym_comment, - ACTIONS(6259), 11, + ACTIONS(6404), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -110332,8 +110733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 30, + ACTIONS(6402), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110364,12 +110764,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [58437] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1520), 1, sym_comment, - ACTIONS(6267), 11, + ACTIONS(6412), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -110380,8 +110781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 30, + ACTIONS(6410), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110412,12 +110812,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [58489] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1521), 1, sym_comment, - ACTIONS(6271), 11, + ACTIONS(6416), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -110428,8 +110829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 30, + ACTIONS(6414), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110460,12 +110860,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [58541] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1522), 1, sym_comment, - ACTIONS(6275), 11, + ACTIONS(6420), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -110476,8 +110877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 30, + ACTIONS(6418), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110508,12 +110908,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [58593] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1523), 1, sym_comment, - ACTIONS(6279), 11, + ACTIONS(6424), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -110524,8 +110925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 30, + ACTIONS(6422), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110556,12 +110956,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [58645] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1524), 1, sym_comment, - ACTIONS(6287), 11, + ACTIONS(6432), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -110572,8 +110973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 30, + ACTIONS(6430), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110604,12 +111004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [58697] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1525), 1, sym_comment, - ACTIONS(6291), 11, + ACTIONS(6436), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -110620,8 +111021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 30, + ACTIONS(6434), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110652,12 +111052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [58749] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1526), 1, sym_comment, - ACTIONS(6295), 11, + ACTIONS(6440), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -110668,8 +111069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 30, + ACTIONS(6438), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110700,12 +111100,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [58801] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1527), 1, sym_comment, - ACTIONS(6299), 11, + ACTIONS(6444), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -110716,8 +111117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 30, + ACTIONS(6442), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110748,12 +111148,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [58853] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1528), 1, sym_comment, - ACTIONS(6303), 11, + ACTIONS(6448), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -110764,8 +111165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 30, + ACTIONS(6446), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110796,12 +111196,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [58905] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1529), 1, sym_comment, - ACTIONS(6307), 11, + ACTIONS(6452), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -110812,8 +111213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 30, + ACTIONS(6450), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110844,12 +111244,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [58957] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1530), 1, sym_comment, - ACTIONS(6135), 11, + ACTIONS(6280), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -110860,8 +111261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 30, + ACTIONS(6278), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110892,12 +111292,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [59009] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1531), 1, sym_comment, - ACTIONS(6311), 11, + ACTIONS(6456), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -110908,8 +111309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 30, + ACTIONS(6454), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110940,12 +111340,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [59061] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1532), 1, sym_comment, - ACTIONS(6315), 11, + ACTIONS(6460), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -110956,8 +111357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 30, + ACTIONS(6458), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110988,12 +111388,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [59113] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1533), 1, sym_comment, - ACTIONS(6319), 11, + ACTIONS(6464), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111004,8 +111405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 30, + ACTIONS(6462), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111036,12 +111436,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [59165] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1534), 1, sym_comment, - ACTIONS(6171), 11, + ACTIONS(6316), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111052,8 +111453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 30, + ACTIONS(6314), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111084,12 +111484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [59217] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1535), 1, sym_comment, - ACTIONS(6179), 11, + ACTIONS(6324), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111100,8 +111501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 30, + ACTIONS(6322), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111132,12 +111532,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [59269] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1536), 1, sym_comment, - ACTIONS(6187), 11, + ACTIONS(6332), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111148,8 +111549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 30, + ACTIONS(6330), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111180,12 +111580,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [59321] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1537), 1, sym_comment, - ACTIONS(6191), 11, + ACTIONS(6336), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111196,8 +111597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 30, + ACTIONS(6334), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111228,12 +111628,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [59373] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1538), 1, sym_comment, - ACTIONS(6211), 11, + ACTIONS(6356), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111244,8 +111645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 30, + ACTIONS(6354), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111276,12 +111676,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [59425] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1539), 1, sym_comment, - ACTIONS(6363), 11, + ACTIONS(6508), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111292,8 +111693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 30, + ACTIONS(6506), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111324,12 +111724,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [59477] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1540), 1, sym_comment, - ACTIONS(6231), 11, + ACTIONS(6376), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111340,8 +111741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 30, + ACTIONS(6374), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111372,12 +111772,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [59529] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1541), 1, sym_comment, - ACTIONS(6263), 11, + ACTIONS(6408), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111388,8 +111789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 30, + ACTIONS(6406), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111420,12 +111820,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [59581] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1542), 1, sym_comment, - ACTIONS(6283), 11, + ACTIONS(6428), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111436,8 +111837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 30, + ACTIONS(6426), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111468,12 +111868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [59633] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1543), 1, sym_comment, - ACTIONS(6323), 11, + ACTIONS(6468), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111484,8 +111885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 30, + ACTIONS(6466), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111516,12 +111916,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [59685] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1544), 1, sym_comment, - ACTIONS(6199), 11, + ACTIONS(6344), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111532,8 +111933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 30, + ACTIONS(6342), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111564,12 +111964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [59737] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1545), 1, sym_comment, - ACTIONS(6183), 11, + ACTIONS(6328), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111580,8 +111981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 30, + ACTIONS(6326), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111612,12 +112012,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [59789] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1546), 1, sym_comment, - ACTIONS(6413), 11, + ACTIONS(6558), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111628,8 +112029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6411), 30, + ACTIONS(6556), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111660,12 +112060,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [59841] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1547), 1, sym_comment, - ACTIONS(6329), 11, + ACTIONS(6474), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111676,8 +112077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 30, + ACTIONS(6472), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111708,12 +112108,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [59893] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1548), 1, sym_comment, - ACTIONS(6333), 11, + ACTIONS(6478), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111724,8 +112125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 30, + ACTIONS(6476), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111756,12 +112156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [59945] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1549), 1, sym_comment, - ACTIONS(6337), 11, + ACTIONS(6482), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111772,8 +112173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 30, + ACTIONS(6480), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111804,12 +112204,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [59997] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1550), 1, sym_comment, - ACTIONS(6341), 11, + ACTIONS(6486), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111820,8 +112221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 30, + ACTIONS(6484), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111852,12 +112252,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [60049] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1551), 1, sym_comment, - ACTIONS(6345), 11, + ACTIONS(6490), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111868,8 +112269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 30, + ACTIONS(6488), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111900,12 +112300,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [60101] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1552), 1, sym_comment, - ACTIONS(6349), 11, + ACTIONS(6494), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111916,8 +112317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 30, + ACTIONS(6492), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111948,12 +112348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [60153] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1553), 1, sym_comment, - ACTIONS(6353), 11, + ACTIONS(6498), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111964,8 +112365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 30, + ACTIONS(6496), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111996,12 +112396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [60205] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1554), 1, sym_comment, - ACTIONS(6359), 11, + ACTIONS(6504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112012,8 +112413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 30, + ACTIONS(6502), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112044,12 +112444,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [60257] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1555), 1, sym_comment, - ACTIONS(6143), 11, + ACTIONS(6288), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112060,8 +112461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 30, + ACTIONS(6286), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112092,12 +112492,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [60309] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1556), 1, sym_comment, - ACTIONS(6147), 11, + ACTIONS(6292), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112108,8 +112509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 30, + ACTIONS(6290), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112140,12 +112540,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [60361] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1557), 1, sym_comment, - ACTIONS(6151), 11, + ACTIONS(6296), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112156,8 +112557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 30, + ACTIONS(6294), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112188,12 +112588,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [60413] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1558), 1, sym_comment, - ACTIONS(6155), 11, + ACTIONS(6300), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112204,8 +112605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 30, + ACTIONS(6298), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112236,12 +112636,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [60465] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1559), 1, sym_comment, - ACTIONS(6159), 11, + ACTIONS(6304), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112252,8 +112653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 30, + ACTIONS(6302), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112284,12 +112684,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [60517] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1560), 1, sym_comment, - ACTIONS(6163), 11, + ACTIONS(6308), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112300,8 +112701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 30, + ACTIONS(6306), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112332,12 +112732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [60569] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1561), 1, sym_comment, - ACTIONS(6167), 11, + ACTIONS(6312), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112348,8 +112749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 30, + ACTIONS(6310), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112380,12 +112780,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [60621] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1562), 1, sym_comment, - ACTIONS(6175), 11, + ACTIONS(6320), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112396,8 +112797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 30, + ACTIONS(6318), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112428,12 +112828,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [60673] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1563), 1, sym_comment, - ACTIONS(6183), 11, + ACTIONS(6328), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112444,8 +112845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 30, + ACTIONS(6326), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112476,12 +112876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [60725] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1564), 1, sym_comment, - ACTIONS(6199), 11, + ACTIONS(6344), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112492,8 +112893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 30, + ACTIONS(6342), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112524,12 +112924,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [60777] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1565), 1, sym_comment, - ACTIONS(6203), 11, + ACTIONS(6348), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112540,8 +112941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 30, + ACTIONS(6346), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112572,12 +112972,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [60829] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1566), 1, sym_comment, - ACTIONS(6207), 11, + ACTIONS(6352), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112588,8 +112989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 30, + ACTIONS(6350), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112620,12 +113020,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [60881] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1567), 1, sym_comment, - ACTIONS(6367), 11, + ACTIONS(6512), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112636,8 +113037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 30, + ACTIONS(6510), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112668,12 +113068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [60933] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1568), 1, sym_comment, - ACTIONS(6215), 11, + ACTIONS(6360), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112684,8 +113085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 30, + ACTIONS(6358), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112716,12 +113116,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [60985] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1569), 1, sym_comment, - ACTIONS(6219), 11, + ACTIONS(6364), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112732,8 +113133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 30, + ACTIONS(6362), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112764,12 +113164,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [61037] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1570), 1, sym_comment, - ACTIONS(6223), 11, + ACTIONS(6368), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112780,8 +113181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 30, + ACTIONS(6366), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112812,12 +113212,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [61089] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1571), 1, sym_comment, - ACTIONS(6227), 11, + ACTIONS(6372), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112828,8 +113229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 30, + ACTIONS(6370), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112860,12 +113260,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [61141] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1572), 1, sym_comment, - ACTIONS(6235), 11, + ACTIONS(6380), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112876,8 +113277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 30, + ACTIONS(6378), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112908,12 +113308,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [61193] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1573), 1, sym_comment, - ACTIONS(6239), 11, + ACTIONS(6384), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112924,8 +113325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 30, + ACTIONS(6382), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112956,12 +113356,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [61245] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1574), 1, sym_comment, - ACTIONS(6243), 11, + ACTIONS(6388), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112972,8 +113373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 30, + ACTIONS(6386), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113004,12 +113404,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [61297] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1575), 1, sym_comment, - ACTIONS(6247), 11, + ACTIONS(6392), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113020,8 +113421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 30, + ACTIONS(6390), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113052,12 +113452,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [61349] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1576), 1, sym_comment, - ACTIONS(6251), 11, + ACTIONS(6396), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113068,8 +113469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 30, + ACTIONS(6394), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113100,12 +113500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [61401] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1577), 1, sym_comment, - ACTIONS(6255), 11, + ACTIONS(6400), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113116,8 +113517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 30, + ACTIONS(6398), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113148,12 +113548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [61453] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1578), 1, sym_comment, - ACTIONS(6259), 11, + ACTIONS(6404), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113164,8 +113565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 30, + ACTIONS(6402), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113196,12 +113596,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [61505] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1579), 1, sym_comment, - ACTIONS(6267), 11, + ACTIONS(6412), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113212,8 +113613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 30, + ACTIONS(6410), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113244,12 +113644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [61557] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1580), 1, sym_comment, - ACTIONS(6271), 11, + ACTIONS(6416), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113260,8 +113661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 30, + ACTIONS(6414), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113292,12 +113692,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [61609] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1581), 1, sym_comment, - ACTIONS(6275), 11, + ACTIONS(6420), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113308,8 +113709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 30, + ACTIONS(6418), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113340,12 +113740,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [61661] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1582), 1, sym_comment, - ACTIONS(6279), 11, + ACTIONS(6424), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113356,8 +113757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 30, + ACTIONS(6422), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113388,12 +113788,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [61713] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1583), 1, sym_comment, - ACTIONS(6287), 11, + ACTIONS(6432), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113404,8 +113805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 30, + ACTIONS(6430), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113436,12 +113836,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [61765] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1584), 1, sym_comment, - ACTIONS(6291), 11, + ACTIONS(6436), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113452,8 +113853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 30, + ACTIONS(6434), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113484,12 +113884,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [61817] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1585), 1, sym_comment, - ACTIONS(6295), 11, + ACTIONS(6440), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113500,8 +113901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 30, + ACTIONS(6438), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113532,12 +113932,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [61869] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1586), 1, sym_comment, - ACTIONS(6299), 11, + ACTIONS(6444), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113548,8 +113949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 30, + ACTIONS(6442), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113580,12 +113980,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [61921] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1587), 1, sym_comment, - ACTIONS(6303), 11, + ACTIONS(6448), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113596,8 +113997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 30, + ACTIONS(6446), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113628,12 +114028,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [61973] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1588), 1, sym_comment, - ACTIONS(6307), 11, + ACTIONS(6452), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113644,8 +114045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 30, + ACTIONS(6450), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113676,12 +114076,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [62025] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1589), 1, sym_comment, - ACTIONS(6135), 11, + ACTIONS(6280), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113692,8 +114093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 30, + ACTIONS(6278), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113724,12 +114124,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [62077] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1590), 1, sym_comment, - ACTIONS(6311), 11, + ACTIONS(6456), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113740,8 +114141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 30, + ACTIONS(6454), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113772,12 +114172,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [62129] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1591), 1, sym_comment, - ACTIONS(6315), 11, + ACTIONS(6460), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113788,8 +114189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 30, + ACTIONS(6458), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113820,12 +114220,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [62181] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1592), 1, sym_comment, - ACTIONS(6319), 11, + ACTIONS(6464), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113836,8 +114237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 30, + ACTIONS(6462), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113868,12 +114268,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [62233] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1593), 1, sym_comment, - ACTIONS(6171), 11, + ACTIONS(6316), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113884,8 +114285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 30, + ACTIONS(6314), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113916,12 +114316,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [62285] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1594), 1, sym_comment, - ACTIONS(6179), 11, + ACTIONS(6324), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113932,8 +114333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 30, + ACTIONS(6322), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113964,12 +114364,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [62337] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1595), 1, sym_comment, - ACTIONS(6187), 11, + ACTIONS(6332), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113980,8 +114381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 30, + ACTIONS(6330), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114012,12 +114412,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [62389] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1596), 1, sym_comment, - ACTIONS(6191), 11, + ACTIONS(6336), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114028,8 +114429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 30, + ACTIONS(6334), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114060,12 +114460,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [62441] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1597), 1, sym_comment, - ACTIONS(6211), 11, + ACTIONS(6356), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114076,8 +114477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 30, + ACTIONS(6354), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114108,12 +114508,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [62493] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1598), 1, sym_comment, - ACTIONS(6363), 11, + ACTIONS(6508), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114124,8 +114525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 30, + ACTIONS(6506), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114156,12 +114556,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [62545] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1599), 1, sym_comment, - ACTIONS(6231), 11, + ACTIONS(6376), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114172,8 +114573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 30, + ACTIONS(6374), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114204,12 +114604,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [62597] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1600), 1, sym_comment, - ACTIONS(6263), 11, + ACTIONS(6408), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114220,8 +114621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 30, + ACTIONS(6406), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114252,12 +114652,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [62649] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1601), 1, sym_comment, - ACTIONS(6283), 11, + ACTIONS(6428), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114268,8 +114669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 30, + ACTIONS(6426), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114300,12 +114700,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [62701] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1602), 1, sym_comment, - ACTIONS(6323), 11, + ACTIONS(6468), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114316,8 +114717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 30, + ACTIONS(6466), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114348,12 +114748,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [62753] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1603), 1, sym_comment, - ACTIONS(6175), 11, + ACTIONS(6320), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114364,8 +114765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 30, + ACTIONS(6318), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114396,12 +114796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [62805] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1604), 1, sym_comment, - ACTIONS(6167), 11, + ACTIONS(6312), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114412,8 +114813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 30, + ACTIONS(6310), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114444,12 +114844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [62857] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1605), 1, sym_comment, - ACTIONS(6163), 11, + ACTIONS(6308), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114460,8 +114861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 30, + ACTIONS(6306), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114492,12 +114892,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [62909] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1606), 1, sym_comment, - ACTIONS(6329), 11, + ACTIONS(6474), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114508,8 +114909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 30, + ACTIONS(6472), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114540,12 +114940,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [62961] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1607), 1, sym_comment, - ACTIONS(6333), 11, + ACTIONS(6478), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114556,8 +114957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 30, + ACTIONS(6476), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114588,12 +114988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [63013] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1608), 1, sym_comment, - ACTIONS(6337), 11, + ACTIONS(6482), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114604,8 +115005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 30, + ACTIONS(6480), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114636,12 +115036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [63065] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1609), 1, sym_comment, - ACTIONS(6341), 11, + ACTIONS(6486), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114652,8 +115053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 30, + ACTIONS(6484), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114684,12 +115084,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [63117] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1610), 1, sym_comment, - ACTIONS(6345), 11, + ACTIONS(6490), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114700,8 +115101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 30, + ACTIONS(6488), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114732,12 +115132,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [63169] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1611), 1, sym_comment, - ACTIONS(6349), 11, + ACTIONS(6494), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114748,8 +115149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 30, + ACTIONS(6492), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114780,12 +115180,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [63221] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1612), 1, sym_comment, - ACTIONS(6353), 11, + ACTIONS(6498), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114796,8 +115197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 30, + ACTIONS(6496), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114828,12 +115228,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [63273] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1613), 1, sym_comment, - ACTIONS(6359), 11, + ACTIONS(6504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114844,8 +115245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 30, + ACTIONS(6502), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114876,12 +115276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [63325] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1614), 1, sym_comment, - ACTIONS(6143), 11, + ACTIONS(6288), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114892,8 +115293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 30, + ACTIONS(6286), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114924,12 +115324,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [63377] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1615), 1, sym_comment, - ACTIONS(6147), 11, + ACTIONS(6292), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114940,8 +115341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 30, + ACTIONS(6290), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114972,12 +115372,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [63429] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1616), 1, sym_comment, - ACTIONS(6151), 11, + ACTIONS(6296), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114988,8 +115389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 30, + ACTIONS(6294), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115020,12 +115420,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [63481] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1617), 1, sym_comment, - ACTIONS(6155), 11, + ACTIONS(6300), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115036,8 +115437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 30, + ACTIONS(6298), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115068,12 +115468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [63533] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1618), 1, sym_comment, - ACTIONS(6159), 11, + ACTIONS(6304), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115084,8 +115485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 30, + ACTIONS(6302), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115116,12 +115516,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [63585] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1619), 1, sym_comment, - ACTIONS(6163), 11, + ACTIONS(6308), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115132,8 +115533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 30, + ACTIONS(6306), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115164,12 +115564,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [63637] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1620), 1, sym_comment, - ACTIONS(6167), 11, + ACTIONS(6312), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115180,8 +115581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 30, + ACTIONS(6310), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115212,12 +115612,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [63689] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1621), 1, sym_comment, - ACTIONS(6175), 11, + ACTIONS(6320), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115228,8 +115629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 30, + ACTIONS(6318), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115260,12 +115660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [63741] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1622), 1, sym_comment, - ACTIONS(6183), 11, + ACTIONS(6328), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115276,8 +115677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 30, + ACTIONS(6326), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115308,12 +115708,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [63793] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1623), 1, sym_comment, - ACTIONS(6199), 11, + ACTIONS(6344), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115324,8 +115725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 30, + ACTIONS(6342), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115356,12 +115756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [63845] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1624), 1, sym_comment, - ACTIONS(6203), 11, + ACTIONS(6348), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115372,8 +115773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 30, + ACTIONS(6346), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115404,12 +115804,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [63897] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1625), 1, sym_comment, - ACTIONS(6207), 11, + ACTIONS(6352), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115420,8 +115821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 30, + ACTIONS(6350), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115452,12 +115852,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [63949] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1626), 1, sym_comment, - ACTIONS(6367), 11, + ACTIONS(6512), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115468,8 +115869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 30, + ACTIONS(6510), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115500,12 +115900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [64001] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1627), 1, sym_comment, - ACTIONS(6215), 11, + ACTIONS(6360), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115516,8 +115917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 30, + ACTIONS(6358), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115548,12 +115948,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [64053] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1628), 1, sym_comment, - ACTIONS(6219), 11, + ACTIONS(6364), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115564,8 +115965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 30, + ACTIONS(6362), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115596,12 +115996,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [64105] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1629), 1, sym_comment, - ACTIONS(6223), 11, + ACTIONS(6368), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115612,8 +116013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 30, + ACTIONS(6366), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115644,12 +116044,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [64157] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1630), 1, sym_comment, - ACTIONS(6227), 11, + ACTIONS(6372), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115660,8 +116061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 30, + ACTIONS(6370), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115692,12 +116092,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [64209] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1631), 1, sym_comment, - ACTIONS(6235), 11, + ACTIONS(6380), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115708,8 +116109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 30, + ACTIONS(6378), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115740,12 +116140,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [64261] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1632), 1, sym_comment, - ACTIONS(6239), 11, + ACTIONS(6384), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115756,8 +116157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 30, + ACTIONS(6382), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115788,12 +116188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [64313] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1633), 1, sym_comment, - ACTIONS(6243), 11, + ACTIONS(6388), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115804,8 +116205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 30, + ACTIONS(6386), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115836,12 +116236,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [64365] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1634), 1, sym_comment, - ACTIONS(6247), 11, + ACTIONS(6392), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115852,8 +116253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 30, + ACTIONS(6390), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115884,12 +116284,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [64417] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1635), 1, sym_comment, - ACTIONS(6251), 11, + ACTIONS(6396), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115900,8 +116301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 30, + ACTIONS(6394), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115932,12 +116332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [64469] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1636), 1, sym_comment, - ACTIONS(6255), 11, + ACTIONS(6400), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115948,8 +116349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 30, + ACTIONS(6398), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115980,12 +116380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [64521] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1637), 1, sym_comment, - ACTIONS(6259), 11, + ACTIONS(6404), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115996,8 +116397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 30, + ACTIONS(6402), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116028,12 +116428,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [64573] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1638), 1, sym_comment, - ACTIONS(6267), 11, + ACTIONS(6412), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116044,8 +116445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 30, + ACTIONS(6410), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116076,12 +116476,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [64625] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1639), 1, sym_comment, - ACTIONS(6271), 11, + ACTIONS(6416), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116092,8 +116493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 30, + ACTIONS(6414), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116124,12 +116524,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [64677] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1640), 1, sym_comment, - ACTIONS(6275), 11, + ACTIONS(6420), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116140,8 +116541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 30, + ACTIONS(6418), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116172,12 +116572,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [64729] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1641), 1, sym_comment, - ACTIONS(6279), 11, + ACTIONS(6424), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116188,8 +116589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 30, + ACTIONS(6422), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116220,12 +116620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [64781] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1642), 1, sym_comment, - ACTIONS(6287), 11, + ACTIONS(6432), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116236,8 +116637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 30, + ACTIONS(6430), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116268,12 +116668,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [64833] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1643), 1, sym_comment, - ACTIONS(6291), 11, + ACTIONS(6436), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116284,8 +116685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 30, + ACTIONS(6434), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116316,12 +116716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [64885] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1644), 1, sym_comment, - ACTIONS(6295), 11, + ACTIONS(6440), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116332,8 +116733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 30, + ACTIONS(6438), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116364,12 +116764,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [64937] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1645), 1, sym_comment, - ACTIONS(6299), 11, + ACTIONS(6444), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116380,8 +116781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 30, + ACTIONS(6442), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116412,12 +116812,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [64989] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1646), 1, sym_comment, - ACTIONS(6303), 11, + ACTIONS(6448), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116428,8 +116829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 30, + ACTIONS(6446), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116460,12 +116860,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [65041] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1647), 1, sym_comment, - ACTIONS(6307), 11, + ACTIONS(6452), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116476,8 +116877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 30, + ACTIONS(6450), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116508,12 +116908,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [65093] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1648), 1, sym_comment, - ACTIONS(6135), 11, + ACTIONS(6280), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116524,8 +116925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 30, + ACTIONS(6278), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116556,12 +116956,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [65145] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1649), 1, sym_comment, - ACTIONS(6311), 11, + ACTIONS(6456), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116572,8 +116973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 30, + ACTIONS(6454), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116604,12 +117004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [65197] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1650), 1, sym_comment, - ACTIONS(6315), 11, + ACTIONS(6460), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116620,8 +117021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 30, + ACTIONS(6458), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116652,12 +117052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [65249] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1651), 1, sym_comment, - ACTIONS(6319), 11, + ACTIONS(6464), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116668,8 +117069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 30, + ACTIONS(6462), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116700,12 +117100,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [65301] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1652), 1, sym_comment, - ACTIONS(6171), 11, + ACTIONS(6316), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116716,8 +117117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 30, + ACTIONS(6314), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116748,12 +117148,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [65353] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1653), 1, sym_comment, - ACTIONS(6179), 11, + ACTIONS(6324), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116764,8 +117165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 30, + ACTIONS(6322), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116796,12 +117196,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [65405] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1654), 1, sym_comment, - ACTIONS(6187), 11, + ACTIONS(6332), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116812,8 +117213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 30, + ACTIONS(6330), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116844,12 +117244,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [65457] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1655), 1, sym_comment, - ACTIONS(6191), 11, + ACTIONS(6336), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116860,8 +117261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 30, + ACTIONS(6334), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116892,12 +117292,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [65509] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1656), 1, sym_comment, - ACTIONS(6211), 11, + ACTIONS(6356), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116908,8 +117309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 30, + ACTIONS(6354), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116940,12 +117340,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [65561] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1657), 1, sym_comment, - ACTIONS(6363), 11, + ACTIONS(6508), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116956,8 +117357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 30, + ACTIONS(6506), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116988,12 +117388,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [65613] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1658), 1, sym_comment, - ACTIONS(6231), 11, + ACTIONS(6376), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117004,8 +117405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 30, + ACTIONS(6374), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117036,12 +117436,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [65665] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1659), 1, sym_comment, - ACTIONS(6263), 11, + ACTIONS(6408), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117052,8 +117453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 30, + ACTIONS(6406), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117084,12 +117484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [65717] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1660), 1, sym_comment, - ACTIONS(6283), 11, + ACTIONS(6428), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117100,8 +117501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 30, + ACTIONS(6426), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117132,12 +117532,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [65769] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1661), 1, sym_comment, - ACTIONS(6323), 11, + ACTIONS(6468), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117148,8 +117549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 30, + ACTIONS(6466), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117180,12 +117580,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [65821] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1662), 1, sym_comment, - ACTIONS(6143), 11, + ACTIONS(6288), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117196,8 +117597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 30, + ACTIONS(6286), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117228,12 +117628,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [65873] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1663), 1, sym_comment, - ACTIONS(6155), 11, + ACTIONS(6300), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117244,8 +117645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 30, + ACTIONS(6298), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117276,12 +117676,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [65925] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1664), 1, sym_comment, - ACTIONS(6375), 11, + ACTIONS(6520), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117292,8 +117693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 30, + ACTIONS(6518), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117324,12 +117724,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [65977] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1665), 1, sym_comment, - ACTIONS(6329), 11, + ACTIONS(6474), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117340,8 +117741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 30, + ACTIONS(6472), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117372,12 +117772,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [66029] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1666), 1, sym_comment, - ACTIONS(6333), 11, + ACTIONS(6478), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117388,8 +117789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 30, + ACTIONS(6476), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117420,12 +117820,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [66081] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1667), 1, sym_comment, - ACTIONS(6337), 11, + ACTIONS(6482), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117436,8 +117837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 30, + ACTIONS(6480), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117468,12 +117868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [66133] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1668), 1, sym_comment, - ACTIONS(6341), 11, + ACTIONS(6486), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117484,8 +117885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 30, + ACTIONS(6484), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117516,12 +117916,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [66185] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1669), 1, sym_comment, - ACTIONS(6345), 11, + ACTIONS(6490), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117532,8 +117933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 30, + ACTIONS(6488), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117564,12 +117964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [66237] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1670), 1, sym_comment, - ACTIONS(6349), 11, + ACTIONS(6494), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117580,8 +117981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 30, + ACTIONS(6492), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117612,12 +118012,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [66289] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1671), 1, sym_comment, - ACTIONS(6353), 11, + ACTIONS(6498), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117628,8 +118029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 30, + ACTIONS(6496), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117660,12 +118060,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [66341] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1672), 1, sym_comment, - ACTIONS(6359), 11, + ACTIONS(6504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117676,8 +118077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 30, + ACTIONS(6502), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117708,12 +118108,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [66393] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1673), 1, sym_comment, - ACTIONS(6143), 11, + ACTIONS(6288), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117724,8 +118125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 30, + ACTIONS(6286), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117756,12 +118156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [66445] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1674), 1, sym_comment, - ACTIONS(6147), 11, + ACTIONS(6292), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117772,8 +118173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 30, + ACTIONS(6290), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117804,12 +118204,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [66497] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1675), 1, sym_comment, - ACTIONS(6151), 11, + ACTIONS(6296), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117820,8 +118221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 30, + ACTIONS(6294), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117852,12 +118252,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [66549] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1676), 1, sym_comment, - ACTIONS(6155), 11, + ACTIONS(6300), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117868,8 +118269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 30, + ACTIONS(6298), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117900,12 +118300,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [66601] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1677), 1, sym_comment, - ACTIONS(6159), 11, + ACTIONS(6304), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117916,8 +118317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 30, + ACTIONS(6302), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117948,12 +118348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [66653] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1678), 1, sym_comment, - ACTIONS(6163), 11, + ACTIONS(6308), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117964,8 +118365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 30, + ACTIONS(6306), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117996,12 +118396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [66705] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1679), 1, sym_comment, - ACTIONS(6167), 11, + ACTIONS(6312), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118012,8 +118413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 30, + ACTIONS(6310), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118044,12 +118444,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [66757] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1680), 1, sym_comment, - ACTIONS(6175), 11, + ACTIONS(6320), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118060,8 +118461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 30, + ACTIONS(6318), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118092,12 +118492,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [66809] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1681), 1, sym_comment, - ACTIONS(6183), 11, + ACTIONS(6328), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118108,8 +118509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 30, + ACTIONS(6326), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118140,12 +118540,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [66861] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1682), 1, sym_comment, - ACTIONS(6199), 11, + ACTIONS(6344), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118156,8 +118557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 30, + ACTIONS(6342), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118188,12 +118588,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [66913] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1683), 1, sym_comment, - ACTIONS(6203), 11, + ACTIONS(6348), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118204,8 +118605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 30, + ACTIONS(6346), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118236,12 +118636,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [66965] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1684), 1, sym_comment, - ACTIONS(6207), 11, + ACTIONS(6352), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118252,8 +118653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 30, + ACTIONS(6350), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118284,12 +118684,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [67017] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1685), 1, sym_comment, - ACTIONS(6367), 11, + ACTIONS(6512), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118300,8 +118701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 30, + ACTIONS(6510), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118332,12 +118732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [67069] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1686), 1, sym_comment, - ACTIONS(6215), 11, + ACTIONS(6360), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118348,8 +118749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 30, + ACTIONS(6358), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118380,12 +118780,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [67121] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1687), 1, sym_comment, - ACTIONS(6219), 11, + ACTIONS(6364), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118396,8 +118797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 30, + ACTIONS(6362), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118428,12 +118828,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [67173] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1688), 1, sym_comment, - ACTIONS(6223), 11, + ACTIONS(6368), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118444,8 +118845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 30, + ACTIONS(6366), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118476,12 +118876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [67225] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1689), 1, sym_comment, - ACTIONS(6227), 11, + ACTIONS(6372), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118492,8 +118893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 30, + ACTIONS(6370), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118524,12 +118924,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [67277] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1690), 1, sym_comment, - ACTIONS(6235), 11, + ACTIONS(6380), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118540,8 +118941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 30, + ACTIONS(6378), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118572,12 +118972,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [67329] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1691), 1, sym_comment, - ACTIONS(6239), 11, + ACTIONS(6384), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118588,8 +118989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 30, + ACTIONS(6382), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118620,12 +119020,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [67381] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1692), 1, sym_comment, - ACTIONS(6243), 11, + ACTIONS(6388), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118636,8 +119037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 30, + ACTIONS(6386), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118668,12 +119068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [67433] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1693), 1, sym_comment, - ACTIONS(6247), 11, + ACTIONS(6392), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118684,8 +119085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 30, + ACTIONS(6390), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118716,12 +119116,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [67485] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1694), 1, sym_comment, - ACTIONS(6251), 11, + ACTIONS(6396), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118732,8 +119133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 30, + ACTIONS(6394), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118764,12 +119164,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [67537] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1695), 1, sym_comment, - ACTIONS(6255), 11, + ACTIONS(6400), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118780,8 +119181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 30, + ACTIONS(6398), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118812,12 +119212,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [67589] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1696), 1, sym_comment, - ACTIONS(6259), 11, + ACTIONS(6404), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118828,8 +119229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 30, + ACTIONS(6402), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118860,12 +119260,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [67641] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1697), 1, sym_comment, - ACTIONS(6267), 11, + ACTIONS(6412), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118876,8 +119277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 30, + ACTIONS(6410), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118908,12 +119308,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [67693] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1698), 1, sym_comment, - ACTIONS(6271), 11, + ACTIONS(6416), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118924,8 +119325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 30, + ACTIONS(6414), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118956,12 +119356,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [67745] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1699), 1, sym_comment, - ACTIONS(6275), 11, + ACTIONS(6420), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118972,8 +119373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 30, + ACTIONS(6418), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119004,12 +119404,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [67797] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1700), 1, sym_comment, - ACTIONS(6279), 11, + ACTIONS(6424), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119020,8 +119421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 30, + ACTIONS(6422), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119052,12 +119452,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [67849] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1701), 1, sym_comment, - ACTIONS(6287), 11, + ACTIONS(6432), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119068,8 +119469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 30, + ACTIONS(6430), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119100,12 +119500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [67901] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1702), 1, sym_comment, - ACTIONS(6291), 11, + ACTIONS(6436), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119116,8 +119517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 30, + ACTIONS(6434), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119148,12 +119548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [67953] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1703), 1, sym_comment, - ACTIONS(6295), 11, + ACTIONS(6440), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119164,8 +119565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 30, + ACTIONS(6438), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119196,12 +119596,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [68005] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1704), 1, sym_comment, - ACTIONS(6299), 11, + ACTIONS(6444), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119212,8 +119613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 30, + ACTIONS(6442), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119244,12 +119644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [68057] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1705), 1, sym_comment, - ACTIONS(6303), 11, + ACTIONS(6448), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119260,8 +119661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 30, + ACTIONS(6446), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119292,12 +119692,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [68109] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1706), 1, sym_comment, - ACTIONS(6307), 11, + ACTIONS(6452), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119308,8 +119709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 30, + ACTIONS(6450), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119340,12 +119740,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [68161] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1707), 1, sym_comment, - ACTIONS(6135), 11, + ACTIONS(6280), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119356,8 +119757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 30, + ACTIONS(6278), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119388,12 +119788,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [68213] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1708), 1, sym_comment, - ACTIONS(6311), 11, + ACTIONS(6456), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119404,8 +119805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 30, + ACTIONS(6454), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119436,12 +119836,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [68265] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1709), 1, sym_comment, - ACTIONS(6315), 11, + ACTIONS(6460), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119452,8 +119853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 30, + ACTIONS(6458), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119484,12 +119884,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [68317] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1710), 1, sym_comment, - ACTIONS(6319), 11, + ACTIONS(6464), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119500,8 +119901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 30, + ACTIONS(6462), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119532,12 +119932,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [68369] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1711), 1, sym_comment, - ACTIONS(6171), 11, + ACTIONS(6316), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119548,8 +119949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 30, + ACTIONS(6314), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119580,12 +119980,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [68421] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1712), 1, sym_comment, - ACTIONS(6179), 11, + ACTIONS(6324), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119596,8 +119997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 30, + ACTIONS(6322), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119628,12 +120028,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [68473] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1713), 1, sym_comment, - ACTIONS(6187), 11, + ACTIONS(6332), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119644,8 +120045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 30, + ACTIONS(6330), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119676,12 +120076,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [68525] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1714), 1, sym_comment, - ACTIONS(6191), 11, + ACTIONS(6336), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119692,8 +120093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 30, + ACTIONS(6334), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119724,12 +120124,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [68577] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1715), 1, sym_comment, - ACTIONS(6211), 11, + ACTIONS(6356), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119740,8 +120141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 30, + ACTIONS(6354), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119772,12 +120172,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [68629] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1716), 1, sym_comment, - ACTIONS(6363), 11, + ACTIONS(6508), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119788,8 +120189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 30, + ACTIONS(6506), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119820,12 +120220,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [68681] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1717), 1, sym_comment, - ACTIONS(6231), 11, + ACTIONS(6376), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119836,8 +120237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 30, + ACTIONS(6374), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119868,12 +120268,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [68733] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1718), 1, sym_comment, - ACTIONS(6263), 11, + ACTIONS(6408), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119884,8 +120285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 30, + ACTIONS(6406), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119916,12 +120316,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [68785] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1719), 1, sym_comment, - ACTIONS(6283), 11, + ACTIONS(6428), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119932,8 +120333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 30, + ACTIONS(6426), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119964,12 +120364,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [68837] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1720), 1, sym_comment, - ACTIONS(6323), 11, + ACTIONS(6468), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119980,8 +120381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 30, + ACTIONS(6466), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120012,12 +120412,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [68889] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1721), 1, sym_comment, - ACTIONS(6151), 11, + ACTIONS(6296), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120028,8 +120429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 30, + ACTIONS(6294), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120060,12 +120460,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [68941] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1722), 1, sym_comment, - ACTIONS(6147), 11, + ACTIONS(6292), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120076,8 +120477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 30, + ACTIONS(6290), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120108,12 +120508,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [68993] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1723), 1, sym_comment, - ACTIONS(6375), 11, + ACTIONS(6520), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120124,8 +120525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 30, + ACTIONS(6518), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120156,12 +120556,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [69045] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1724), 1, sym_comment, - ACTIONS(6329), 11, + ACTIONS(6474), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120172,8 +120573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 30, + ACTIONS(6472), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120204,12 +120604,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [69097] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1725), 1, sym_comment, - ACTIONS(6333), 11, + ACTIONS(6478), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120220,8 +120621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 30, + ACTIONS(6476), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120252,12 +120652,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [69149] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1726), 1, sym_comment, - ACTIONS(6337), 11, + ACTIONS(6482), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120268,8 +120669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 30, + ACTIONS(6480), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120300,12 +120700,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [69201] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1727), 1, sym_comment, - ACTIONS(6341), 11, + ACTIONS(6486), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120316,8 +120717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 30, + ACTIONS(6484), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120348,12 +120748,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [69253] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1728), 1, sym_comment, - ACTIONS(6345), 11, + ACTIONS(6490), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120364,8 +120765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 30, + ACTIONS(6488), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120396,12 +120796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [69305] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1729), 1, sym_comment, - ACTIONS(6349), 11, + ACTIONS(6494), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120412,8 +120813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 30, + ACTIONS(6492), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120444,12 +120844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [69357] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1730), 1, sym_comment, - ACTIONS(6353), 11, + ACTIONS(6498), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120460,8 +120861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 30, + ACTIONS(6496), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120492,12 +120892,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [69409] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1731), 1, sym_comment, - ACTIONS(6359), 11, + ACTIONS(6504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120508,8 +120909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 30, + ACTIONS(6502), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120540,12 +120940,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [69461] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1732), 1, sym_comment, - ACTIONS(6143), 11, + ACTIONS(6288), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120556,8 +120957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 30, + ACTIONS(6286), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120588,12 +120988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [69513] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1733), 1, sym_comment, - ACTIONS(6147), 11, + ACTIONS(6292), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120604,8 +121005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 30, + ACTIONS(6290), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120636,12 +121036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [69565] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1734), 1, sym_comment, - ACTIONS(6151), 11, + ACTIONS(6296), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120652,8 +121053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 30, + ACTIONS(6294), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120684,12 +121084,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [69617] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1735), 1, sym_comment, - ACTIONS(6155), 11, + ACTIONS(6300), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120700,8 +121101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 30, + ACTIONS(6298), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120732,12 +121132,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [69669] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1736), 1, sym_comment, - ACTIONS(6159), 11, + ACTIONS(6304), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120748,8 +121149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 30, + ACTIONS(6302), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120780,12 +121180,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [69721] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1737), 1, sym_comment, - ACTIONS(6163), 11, + ACTIONS(6308), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120796,8 +121197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 30, + ACTIONS(6306), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120828,12 +121228,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [69773] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1738), 1, sym_comment, - ACTIONS(6167), 11, + ACTIONS(6312), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120844,8 +121245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 30, + ACTIONS(6310), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120876,12 +121276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [69825] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1739), 1, sym_comment, - ACTIONS(6175), 11, + ACTIONS(6320), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120892,8 +121293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 30, + ACTIONS(6318), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120924,12 +121324,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [69877] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1740), 1, sym_comment, - ACTIONS(6183), 11, + ACTIONS(6328), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120940,8 +121341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 30, + ACTIONS(6326), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120972,12 +121372,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [69929] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1741), 1, sym_comment, - ACTIONS(6375), 11, + ACTIONS(6520), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120988,8 +121389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 30, + ACTIONS(6518), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121020,12 +121420,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [69981] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1742), 1, sym_comment, - ACTIONS(6203), 11, + ACTIONS(6348), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121036,8 +121437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 30, + ACTIONS(6346), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121068,12 +121468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [70033] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1743), 1, sym_comment, - ACTIONS(6207), 11, + ACTIONS(6352), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121084,8 +121485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 30, + ACTIONS(6350), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121116,12 +121516,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [70085] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1744), 1, sym_comment, - ACTIONS(6367), 11, + ACTIONS(6512), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121132,8 +121533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 30, + ACTIONS(6510), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121164,12 +121564,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [70137] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1745), 1, sym_comment, - ACTIONS(6215), 11, + ACTIONS(6360), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121180,8 +121581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 30, + ACTIONS(6358), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121212,12 +121612,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [70189] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1746), 1, sym_comment, - ACTIONS(6219), 11, + ACTIONS(6364), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121228,8 +121629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 30, + ACTIONS(6362), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121260,12 +121660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [70241] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1747), 1, sym_comment, - ACTIONS(6223), 11, + ACTIONS(6368), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121276,8 +121677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 30, + ACTIONS(6366), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121308,12 +121708,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [70293] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1748), 1, sym_comment, - ACTIONS(6227), 11, + ACTIONS(6372), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121324,8 +121725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 30, + ACTIONS(6370), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121356,12 +121756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [70345] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1749), 1, sym_comment, - ACTIONS(6235), 11, + ACTIONS(6380), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121372,8 +121773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 30, + ACTIONS(6378), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121404,12 +121804,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [70397] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1750), 1, sym_comment, - ACTIONS(6239), 11, + ACTIONS(6384), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121420,8 +121821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 30, + ACTIONS(6382), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121452,12 +121852,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [70449] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1751), 1, sym_comment, - ACTIONS(6243), 11, + ACTIONS(6388), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121468,8 +121869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 30, + ACTIONS(6386), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121500,12 +121900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [70501] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1752), 1, sym_comment, - ACTIONS(6247), 11, + ACTIONS(6392), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121516,8 +121917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 30, + ACTIONS(6390), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121548,12 +121948,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [70553] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1753), 1, sym_comment, - ACTIONS(6251), 11, + ACTIONS(6396), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121564,8 +121965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 30, + ACTIONS(6394), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121596,12 +121996,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [70605] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1754), 1, sym_comment, - ACTIONS(6255), 11, + ACTIONS(6400), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121612,8 +122013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 30, + ACTIONS(6398), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121644,12 +122044,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [70657] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1755), 1, sym_comment, - ACTIONS(6259), 11, + ACTIONS(6404), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121660,8 +122061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 30, + ACTIONS(6402), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121692,12 +122092,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [70709] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1756), 1, sym_comment, - ACTIONS(6267), 11, + ACTIONS(6412), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121708,8 +122109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 30, + ACTIONS(6410), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121740,12 +122140,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [70761] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1757), 1, sym_comment, - ACTIONS(6271), 11, + ACTIONS(6416), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121756,8 +122157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 30, + ACTIONS(6414), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121788,12 +122188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [70813] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1758), 1, sym_comment, - ACTIONS(6275), 11, + ACTIONS(6420), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121804,8 +122205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 30, + ACTIONS(6418), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121836,12 +122236,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [70865] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1759), 1, sym_comment, - ACTIONS(6279), 11, + ACTIONS(6424), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121852,8 +122253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 30, + ACTIONS(6422), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121884,12 +122284,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [70917] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1760), 1, sym_comment, - ACTIONS(6287), 11, + ACTIONS(6432), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121900,8 +122301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 30, + ACTIONS(6430), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121932,12 +122332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [70969] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1761), 1, sym_comment, - ACTIONS(6291), 11, + ACTIONS(6436), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121948,8 +122349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 30, + ACTIONS(6434), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121980,12 +122380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [71021] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1762), 1, sym_comment, - ACTIONS(6295), 11, + ACTIONS(6440), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121996,8 +122397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 30, + ACTIONS(6438), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122028,12 +122428,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [71073] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1763), 1, sym_comment, - ACTIONS(6299), 11, + ACTIONS(6444), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122044,8 +122445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 30, + ACTIONS(6442), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122076,12 +122476,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [71125] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1764), 1, sym_comment, - ACTIONS(6303), 11, + ACTIONS(6448), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122092,8 +122493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 30, + ACTIONS(6446), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122124,12 +122524,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [71177] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1765), 1, sym_comment, - ACTIONS(6307), 11, + ACTIONS(6452), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122140,8 +122541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 30, + ACTIONS(6450), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122172,12 +122572,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [71229] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1766), 1, sym_comment, - ACTIONS(6135), 11, + ACTIONS(6280), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122188,8 +122589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 30, + ACTIONS(6278), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122220,12 +122620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [71281] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1767), 1, sym_comment, - ACTIONS(6311), 11, + ACTIONS(6456), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122236,8 +122637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 30, + ACTIONS(6454), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122268,12 +122668,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [71333] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1768), 1, sym_comment, - ACTIONS(6315), 11, + ACTIONS(6460), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122284,8 +122685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 30, + ACTIONS(6458), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122316,12 +122716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [71385] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1769), 1, sym_comment, - ACTIONS(6319), 11, + ACTIONS(6464), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122332,8 +122733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 30, + ACTIONS(6462), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122364,12 +122764,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [71437] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1770), 1, sym_comment, - ACTIONS(6171), 11, + ACTIONS(6316), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122380,8 +122781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 30, + ACTIONS(6314), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122412,12 +122812,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [71489] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1771), 1, sym_comment, - ACTIONS(6179), 11, + ACTIONS(6324), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122428,8 +122829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 30, + ACTIONS(6322), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122460,12 +122860,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [71541] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1772), 1, sym_comment, - ACTIONS(6187), 11, + ACTIONS(6332), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122476,8 +122877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 30, + ACTIONS(6330), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122508,12 +122908,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [71593] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1773), 1, sym_comment, - ACTIONS(6191), 11, + ACTIONS(6336), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122524,8 +122925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 30, + ACTIONS(6334), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122556,12 +122956,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [71645] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1774), 1, sym_comment, - ACTIONS(6211), 11, + ACTIONS(6356), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122572,8 +122973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 30, + ACTIONS(6354), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122604,12 +123004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [71697] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1775), 1, sym_comment, - ACTIONS(6363), 11, + ACTIONS(6508), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122620,8 +123021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 30, + ACTIONS(6506), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122652,12 +123052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [71749] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1776), 1, sym_comment, - ACTIONS(6231), 11, + ACTIONS(6376), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122668,8 +123069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 30, + ACTIONS(6374), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122700,12 +123100,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [71801] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1777), 1, sym_comment, - ACTIONS(6263), 11, + ACTIONS(6408), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122716,8 +123117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 30, + ACTIONS(6406), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122748,12 +123148,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [71853] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1778), 1, sym_comment, - ACTIONS(6283), 11, + ACTIONS(6428), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122764,8 +123165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 30, + ACTIONS(6426), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122796,12 +123196,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [71905] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1779), 1, sym_comment, - ACTIONS(6323), 11, + ACTIONS(6468), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122812,8 +123213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 30, + ACTIONS(6466), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122844,12 +123244,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [71957] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1780), 1, sym_comment, - ACTIONS(6333), 11, + ACTIONS(6478), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122860,8 +123261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 30, + ACTIONS(6476), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122892,12 +123292,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [72009] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1781), 1, sym_comment, - ACTIONS(6359), 11, + ACTIONS(6504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122908,8 +123309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 30, + ACTIONS(6502), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122940,12 +123340,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [72061] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1782), 1, sym_comment, - ACTIONS(6375), 11, + ACTIONS(6520), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122956,8 +123357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 30, + ACTIONS(6518), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122988,12 +123388,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [72113] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1783), 1, sym_comment, - ACTIONS(6329), 11, + ACTIONS(6474), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123004,8 +123405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 30, + ACTIONS(6472), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123036,12 +123436,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [72165] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1784), 1, sym_comment, - ACTIONS(6333), 11, + ACTIONS(6478), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123052,8 +123453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 30, + ACTIONS(6476), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123084,12 +123484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [72217] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1785), 1, sym_comment, - ACTIONS(6337), 11, + ACTIONS(6482), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123100,8 +123501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 30, + ACTIONS(6480), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123132,12 +123532,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [72269] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1786), 1, sym_comment, - ACTIONS(6341), 11, + ACTIONS(6486), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123148,8 +123549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 30, + ACTIONS(6484), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123180,12 +123580,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [72321] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1787), 1, sym_comment, - ACTIONS(6345), 11, + ACTIONS(6490), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123196,8 +123597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 30, + ACTIONS(6488), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123228,12 +123628,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [72373] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1788), 1, sym_comment, - ACTIONS(6349), 11, + ACTIONS(6494), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123244,8 +123645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 30, + ACTIONS(6492), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123276,12 +123676,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [72425] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1789), 1, sym_comment, - ACTIONS(6353), 11, + ACTIONS(6498), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123292,8 +123693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 30, + ACTIONS(6496), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123324,12 +123724,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [72477] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1790), 1, sym_comment, - ACTIONS(6359), 11, + ACTIONS(6504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123340,8 +123741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 30, + ACTIONS(6502), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123372,12 +123772,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [72529] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1791), 1, sym_comment, - ACTIONS(6143), 11, + ACTIONS(6288), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123388,8 +123789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 30, + ACTIONS(6286), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123420,12 +123820,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [72581] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1792), 1, sym_comment, - ACTIONS(6147), 11, + ACTIONS(6292), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123436,8 +123837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 30, + ACTIONS(6290), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123468,12 +123868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [72633] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1793), 1, sym_comment, - ACTIONS(6151), 11, + ACTIONS(6296), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123484,8 +123885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 30, + ACTIONS(6294), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123516,12 +123916,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [72685] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1794), 1, sym_comment, - ACTIONS(6155), 11, + ACTIONS(6300), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123532,8 +123933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 30, + ACTIONS(6298), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123564,12 +123964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [72737] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1795), 1, sym_comment, - ACTIONS(6159), 11, + ACTIONS(6304), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123580,8 +123981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 30, + ACTIONS(6302), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123612,12 +124012,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [72789] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1796), 1, sym_comment, - ACTIONS(6163), 11, + ACTIONS(6308), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123628,8 +124029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 30, + ACTIONS(6306), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123660,12 +124060,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [72841] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1797), 1, sym_comment, - ACTIONS(6167), 11, + ACTIONS(6312), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123676,8 +124077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 30, + ACTIONS(6310), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123708,12 +124108,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [72893] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1798), 1, sym_comment, - ACTIONS(6175), 11, + ACTIONS(6320), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123724,8 +124125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 30, + ACTIONS(6318), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123756,12 +124156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [72945] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1799), 1, sym_comment, - ACTIONS(6183), 11, + ACTIONS(6328), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123772,8 +124173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 30, + ACTIONS(6326), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123804,12 +124204,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [72997] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1800), 1, sym_comment, - ACTIONS(6199), 11, + ACTIONS(6344), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123820,8 +124221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 30, + ACTIONS(6342), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123852,12 +124252,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [73049] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1801), 1, sym_comment, - ACTIONS(6203), 11, + ACTIONS(6348), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123868,8 +124269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 30, + ACTIONS(6346), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123900,12 +124300,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [73101] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1802), 1, sym_comment, - ACTIONS(6207), 11, + ACTIONS(6352), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123916,8 +124317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 30, + ACTIONS(6350), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123948,12 +124348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [73153] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1803), 1, sym_comment, - ACTIONS(6353), 11, + ACTIONS(6498), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123964,8 +124365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 30, + ACTIONS(6496), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123996,12 +124396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [73205] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1804), 1, sym_comment, - ACTIONS(6215), 11, + ACTIONS(6360), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124012,8 +124413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 30, + ACTIONS(6358), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124044,12 +124444,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [73257] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1805), 1, sym_comment, - ACTIONS(6219), 11, + ACTIONS(6364), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124060,8 +124461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 30, + ACTIONS(6362), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124092,12 +124492,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [73309] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1806), 1, sym_comment, - ACTIONS(6223), 11, + ACTIONS(6368), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124108,8 +124509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 30, + ACTIONS(6366), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124140,12 +124540,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [73361] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1807), 1, sym_comment, - ACTIONS(6227), 11, + ACTIONS(6372), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124156,8 +124557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 30, + ACTIONS(6370), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124188,12 +124588,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [73413] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1808), 1, sym_comment, - ACTIONS(6235), 11, + ACTIONS(6380), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124204,8 +124605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 30, + ACTIONS(6378), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124236,12 +124636,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [73465] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1809), 1, sym_comment, - ACTIONS(6239), 11, + ACTIONS(6384), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124252,8 +124653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 30, + ACTIONS(6382), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124284,12 +124684,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [73517] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1810), 1, sym_comment, - ACTIONS(6243), 11, + ACTIONS(6388), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124300,8 +124701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 30, + ACTIONS(6386), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124332,12 +124732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [73569] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1811), 1, sym_comment, - ACTIONS(6247), 11, + ACTIONS(6392), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124348,8 +124749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 30, + ACTIONS(6390), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124380,12 +124780,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [73621] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1812), 1, sym_comment, - ACTIONS(6251), 11, + ACTIONS(6396), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124396,8 +124797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 30, + ACTIONS(6394), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124428,12 +124828,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [73673] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1813), 1, sym_comment, - ACTIONS(6255), 11, + ACTIONS(6400), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124444,8 +124845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 30, + ACTIONS(6398), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124476,12 +124876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [73725] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1814), 1, sym_comment, - ACTIONS(6259), 11, + ACTIONS(6404), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124492,8 +124893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 30, + ACTIONS(6402), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124524,12 +124924,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [73777] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1815), 1, sym_comment, - ACTIONS(6267), 11, + ACTIONS(6412), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124540,8 +124941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 30, + ACTIONS(6410), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124572,12 +124972,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [73829] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1816), 1, sym_comment, - ACTIONS(6271), 11, + ACTIONS(6416), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124588,8 +124989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 30, + ACTIONS(6414), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124620,12 +125020,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [73881] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1817), 1, sym_comment, - ACTIONS(6275), 11, + ACTIONS(6420), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124636,8 +125037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 30, + ACTIONS(6418), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124668,12 +125068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [73933] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1818), 1, sym_comment, - ACTIONS(6279), 11, + ACTIONS(6424), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124684,8 +125085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 30, + ACTIONS(6422), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124716,12 +125116,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [73985] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1819), 1, sym_comment, - ACTIONS(6287), 11, + ACTIONS(6432), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124732,8 +125133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 30, + ACTIONS(6430), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124764,12 +125164,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [74037] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1820), 1, sym_comment, - ACTIONS(6291), 11, + ACTIONS(6436), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124780,8 +125181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 30, + ACTIONS(6434), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124812,12 +125212,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [74089] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1821), 1, sym_comment, - ACTIONS(6295), 11, + ACTIONS(6440), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124828,8 +125229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 30, + ACTIONS(6438), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124860,12 +125260,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [74141] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1822), 1, sym_comment, - ACTIONS(6299), 11, + ACTIONS(6444), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124876,8 +125277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 30, + ACTIONS(6442), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124908,12 +125308,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [74193] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1823), 1, sym_comment, - ACTIONS(6303), 11, + ACTIONS(6448), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124924,8 +125325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 30, + ACTIONS(6446), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124956,12 +125356,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [74245] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1824), 1, sym_comment, - ACTIONS(6307), 11, + ACTIONS(6452), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124972,8 +125373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 30, + ACTIONS(6450), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125004,12 +125404,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [74297] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1825), 1, sym_comment, - ACTIONS(6135), 11, + ACTIONS(6280), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125020,8 +125421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 30, + ACTIONS(6278), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125052,12 +125452,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [74349] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1826), 1, sym_comment, - ACTIONS(6311), 11, + ACTIONS(6456), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125068,8 +125469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 30, + ACTIONS(6454), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125100,12 +125500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [74401] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1827), 1, sym_comment, - ACTIONS(6315), 11, + ACTIONS(6460), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125116,8 +125517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 30, + ACTIONS(6458), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125148,12 +125548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [74453] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1828), 1, sym_comment, - ACTIONS(6319), 11, + ACTIONS(6464), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125164,8 +125565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 30, + ACTIONS(6462), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125196,12 +125596,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [74505] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1829), 1, sym_comment, - ACTIONS(6171), 11, + ACTIONS(6316), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125212,8 +125613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 30, + ACTIONS(6314), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125244,12 +125644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [74557] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1830), 1, sym_comment, - ACTIONS(6179), 11, + ACTIONS(6324), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125260,8 +125661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 30, + ACTIONS(6322), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125292,12 +125692,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [74609] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1831), 1, sym_comment, - ACTIONS(6187), 11, + ACTIONS(6332), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125308,8 +125709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 30, + ACTIONS(6330), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125340,12 +125740,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [74661] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1832), 1, sym_comment, - ACTIONS(6191), 11, + ACTIONS(6336), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125356,8 +125757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 30, + ACTIONS(6334), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125388,12 +125788,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [74713] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1833), 1, sym_comment, - ACTIONS(6211), 11, + ACTIONS(6356), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125404,8 +125805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 30, + ACTIONS(6354), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125436,12 +125836,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [74765] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1834), 1, sym_comment, - ACTIONS(6349), 11, + ACTIONS(6494), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125452,8 +125853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 30, + ACTIONS(6492), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125484,12 +125884,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [74817] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1835), 1, sym_comment, - ACTIONS(6231), 11, + ACTIONS(6376), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125500,8 +125901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 30, + ACTIONS(6374), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125532,12 +125932,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [74869] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1836), 1, sym_comment, - ACTIONS(6263), 11, + ACTIONS(6408), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125548,8 +125949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 30, + ACTIONS(6406), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125580,12 +125980,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [74921] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1837), 1, sym_comment, - ACTIONS(6283), 11, + ACTIONS(6428), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125596,8 +125997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 30, + ACTIONS(6426), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125628,12 +126028,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [74973] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1838), 1, sym_comment, - ACTIONS(6323), 11, + ACTIONS(6468), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125644,8 +126045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 30, + ACTIONS(6466), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125676,12 +126076,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [75025] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1839), 1, sym_comment, - ACTIONS(6345), 11, + ACTIONS(6490), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125692,8 +126093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 30, + ACTIONS(6488), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125724,12 +126124,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [75077] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1840), 1, sym_comment, - ACTIONS(6341), 11, + ACTIONS(6486), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125740,8 +126141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 30, + ACTIONS(6484), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125772,12 +126172,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [75129] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1841), 1, sym_comment, - ACTIONS(6375), 11, + ACTIONS(6520), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125788,8 +126189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 30, + ACTIONS(6518), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125820,12 +126220,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [75181] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1842), 1, sym_comment, - ACTIONS(6329), 11, + ACTIONS(6474), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125836,8 +126237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 30, + ACTIONS(6472), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125868,12 +126268,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [75233] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1843), 1, sym_comment, - ACTIONS(6333), 11, + ACTIONS(6478), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125884,8 +126285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 30, + ACTIONS(6476), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125916,12 +126316,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [75285] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1844), 1, sym_comment, - ACTIONS(6337), 11, + ACTIONS(6482), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125932,8 +126333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 30, + ACTIONS(6480), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125964,12 +126364,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [75337] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1845), 1, sym_comment, - ACTIONS(6341), 11, + ACTIONS(6486), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125980,8 +126381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 30, + ACTIONS(6484), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126012,12 +126412,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [75389] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1846), 1, sym_comment, - ACTIONS(6345), 11, + ACTIONS(6490), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126028,8 +126429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 30, + ACTIONS(6488), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126060,12 +126460,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [75441] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1847), 1, sym_comment, - ACTIONS(6349), 11, + ACTIONS(6494), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126076,8 +126477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 30, + ACTIONS(6492), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126108,12 +126508,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [75493] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1848), 1, sym_comment, - ACTIONS(6353), 11, + ACTIONS(6498), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126124,8 +126525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 30, + ACTIONS(6496), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126156,12 +126556,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [75545] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1849), 1, sym_comment, - ACTIONS(6359), 11, + ACTIONS(6504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126172,8 +126573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 30, + ACTIONS(6502), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126204,12 +126604,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [75597] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1850), 1, sym_comment, - ACTIONS(6143), 11, + ACTIONS(6288), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126220,8 +126621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 30, + ACTIONS(6286), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126252,12 +126652,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [75649] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1851), 1, sym_comment, - ACTIONS(6147), 11, + ACTIONS(6292), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126268,8 +126669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 30, + ACTIONS(6290), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126300,12 +126700,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [75701] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1852), 1, sym_comment, - ACTIONS(6151), 11, + ACTIONS(6296), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126316,8 +126717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 30, + ACTIONS(6294), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126348,12 +126748,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [75753] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1853), 1, sym_comment, - ACTIONS(6155), 11, + ACTIONS(6300), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126364,8 +126765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 30, + ACTIONS(6298), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126396,12 +126796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [75805] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1854), 1, sym_comment, - ACTIONS(6159), 11, + ACTIONS(6304), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126412,8 +126813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 30, + ACTIONS(6302), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126444,12 +126844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [75857] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1855), 1, sym_comment, - ACTIONS(6163), 11, + ACTIONS(6308), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126460,8 +126861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 30, + ACTIONS(6306), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126492,12 +126892,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [75909] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1856), 1, sym_comment, - ACTIONS(6167), 11, + ACTIONS(6312), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126508,8 +126909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 30, + ACTIONS(6310), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126540,12 +126940,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [75961] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1857), 1, sym_comment, - ACTIONS(6175), 11, + ACTIONS(6320), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126556,8 +126957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 30, + ACTIONS(6318), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126588,12 +126988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [76013] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1858), 1, sym_comment, - ACTIONS(6183), 11, + ACTIONS(6328), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126604,8 +127005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 30, + ACTIONS(6326), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126636,12 +127036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [76065] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1859), 1, sym_comment, - ACTIONS(6199), 11, + ACTIONS(6344), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126652,8 +127053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 30, + ACTIONS(6342), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126684,12 +127084,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [76117] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1860), 1, sym_comment, - ACTIONS(6203), 11, + ACTIONS(6348), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126700,8 +127101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 30, + ACTIONS(6346), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126732,12 +127132,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [76169] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1861), 1, sym_comment, - ACTIONS(6207), 11, + ACTIONS(6352), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126748,8 +127149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 30, + ACTIONS(6350), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126780,12 +127180,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [76221] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1862), 1, sym_comment, - ACTIONS(6337), 11, + ACTIONS(6482), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126796,8 +127197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 30, + ACTIONS(6480), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126828,12 +127228,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [76273] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1863), 1, sym_comment, - ACTIONS(6215), 11, + ACTIONS(6360), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126844,8 +127245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 30, + ACTIONS(6358), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126876,12 +127276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [76325] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1864), 1, sym_comment, - ACTIONS(6219), 11, + ACTIONS(6364), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126892,8 +127293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 30, + ACTIONS(6362), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126924,12 +127324,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [76377] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1865), 1, sym_comment, - ACTIONS(6223), 11, + ACTIONS(6368), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126940,8 +127341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 30, + ACTIONS(6366), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126972,12 +127372,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [76429] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1866), 1, sym_comment, - ACTIONS(6227), 11, + ACTIONS(6372), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126988,8 +127389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 30, + ACTIONS(6370), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127020,12 +127420,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [76481] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1867), 1, sym_comment, - ACTIONS(6235), 11, + ACTIONS(6380), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127036,8 +127437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 30, + ACTIONS(6378), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127068,12 +127468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [76533] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1868), 1, sym_comment, - ACTIONS(6239), 11, + ACTIONS(6384), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127084,8 +127485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 30, + ACTIONS(6382), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127116,12 +127516,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [76585] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1869), 1, sym_comment, - ACTIONS(6243), 11, + ACTIONS(6388), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127132,8 +127533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 30, + ACTIONS(6386), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127164,12 +127564,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [76637] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1870), 1, sym_comment, - ACTIONS(6247), 11, + ACTIONS(6392), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127180,8 +127581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 30, + ACTIONS(6390), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127212,12 +127612,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [76689] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1871), 1, sym_comment, - ACTIONS(6251), 11, + ACTIONS(6396), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127228,8 +127629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 30, + ACTIONS(6394), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127260,12 +127660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [76741] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1872), 1, sym_comment, - ACTIONS(6255), 11, + ACTIONS(6400), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127276,8 +127677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 30, + ACTIONS(6398), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127308,12 +127708,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [76793] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1873), 1, sym_comment, - ACTIONS(6259), 11, + ACTIONS(6404), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127324,8 +127725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 30, + ACTIONS(6402), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127356,12 +127756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [76845] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1874), 1, sym_comment, - ACTIONS(6267), 11, + ACTIONS(6412), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127372,8 +127773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 30, + ACTIONS(6410), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127404,12 +127804,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [76897] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1875), 1, sym_comment, - ACTIONS(6271), 11, + ACTIONS(6416), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127420,8 +127821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 30, + ACTIONS(6414), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127452,12 +127852,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [76949] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1876), 1, sym_comment, - ACTIONS(6275), 11, + ACTIONS(6420), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127468,8 +127869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 30, + ACTIONS(6418), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127500,12 +127900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [77001] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1877), 1, sym_comment, - ACTIONS(6279), 11, + ACTIONS(6424), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127516,8 +127917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 30, + ACTIONS(6422), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127548,12 +127948,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [77053] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1878), 1, sym_comment, - ACTIONS(6287), 11, + ACTIONS(6432), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127564,8 +127965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 30, + ACTIONS(6430), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127596,12 +127996,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [77105] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1879), 1, sym_comment, - ACTIONS(6291), 11, + ACTIONS(6436), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127612,8 +128013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 30, + ACTIONS(6434), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127644,12 +128044,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [77157] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1880), 1, sym_comment, - ACTIONS(6295), 11, + ACTIONS(6440), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127660,8 +128061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 30, + ACTIONS(6438), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127692,12 +128092,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [77209] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1881), 1, sym_comment, - ACTIONS(6299), 11, + ACTIONS(6444), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127708,8 +128109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 30, + ACTIONS(6442), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127740,12 +128140,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [77261] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1882), 1, sym_comment, - ACTIONS(6303), 11, + ACTIONS(6448), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127756,8 +128157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 30, + ACTIONS(6446), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127788,12 +128188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [77313] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1883), 1, sym_comment, - ACTIONS(6307), 11, + ACTIONS(6452), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127804,8 +128205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 30, + ACTIONS(6450), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127836,12 +128236,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [77365] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1884), 1, sym_comment, - ACTIONS(6135), 11, + ACTIONS(6280), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127852,8 +128253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 30, + ACTIONS(6278), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127884,12 +128284,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [77417] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1885), 1, sym_comment, - ACTIONS(6311), 11, + ACTIONS(6456), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127900,8 +128301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 30, + ACTIONS(6454), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127932,12 +128332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [77469] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1886), 1, sym_comment, - ACTIONS(6315), 11, + ACTIONS(6460), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127948,8 +128349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 30, + ACTIONS(6458), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127980,12 +128380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [77521] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1887), 1, sym_comment, - ACTIONS(6319), 11, + ACTIONS(6464), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127996,8 +128397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 30, + ACTIONS(6462), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128028,12 +128428,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [77573] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1888), 1, sym_comment, - ACTIONS(6171), 11, + ACTIONS(6316), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128044,8 +128445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 30, + ACTIONS(6314), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128076,12 +128476,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [77625] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1889), 1, sym_comment, - ACTIONS(6179), 11, + ACTIONS(6324), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128092,8 +128493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 30, + ACTIONS(6322), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128124,12 +128524,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [77677] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1890), 1, sym_comment, - ACTIONS(6187), 11, + ACTIONS(6332), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128140,8 +128541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 30, + ACTIONS(6330), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128172,12 +128572,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [77729] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1891), 1, sym_comment, - ACTIONS(6191), 11, + ACTIONS(6336), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128188,8 +128589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 30, + ACTIONS(6334), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128220,12 +128620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [77781] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1892), 1, sym_comment, - ACTIONS(6211), 11, + ACTIONS(6356), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128236,8 +128637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 30, + ACTIONS(6354), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128268,12 +128668,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [77833] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1893), 1, sym_comment, - ACTIONS(6271), 11, + ACTIONS(6416), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128284,8 +128685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 30, + ACTIONS(6414), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128316,12 +128716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [77885] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1894), 1, sym_comment, - ACTIONS(6231), 11, + ACTIONS(6376), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128332,8 +128733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 30, + ACTIONS(6374), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128364,12 +128764,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [77937] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1895), 1, sym_comment, - ACTIONS(6263), 11, + ACTIONS(6408), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128380,8 +128781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 30, + ACTIONS(6406), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128412,12 +128812,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [77989] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1896), 1, sym_comment, - ACTIONS(6283), 11, + ACTIONS(6428), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128428,8 +128829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 30, + ACTIONS(6426), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128460,12 +128860,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [78041] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1897), 1, sym_comment, - ACTIONS(6323), 12, + ACTIONS(6468), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128477,8 +128878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 29, + ACTIONS(6466), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128508,12 +128908,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [78093] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1898), 1, sym_comment, - ACTIONS(6329), 11, + ACTIONS(6474), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128524,8 +128925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 30, + ACTIONS(6472), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128556,12 +128956,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [78145] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1899), 1, sym_comment, - ACTIONS(6323), 11, + ACTIONS(6468), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128572,8 +128973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 30, + ACTIONS(6466), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128604,12 +129004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [78197] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1900), 1, sym_comment, - ACTIONS(6375), 11, + ACTIONS(6520), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128620,8 +129021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 30, + ACTIONS(6518), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128652,12 +129052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [78249] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1901), 1, sym_comment, - ACTIONS(6329), 12, + ACTIONS(6474), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128669,8 +129070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 29, + ACTIONS(6472), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128700,12 +129100,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [78301] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1902), 1, sym_comment, - ACTIONS(6333), 12, + ACTIONS(6478), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128717,8 +129118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 29, + ACTIONS(6476), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128748,12 +129148,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [78353] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1903), 1, sym_comment, - ACTIONS(6337), 12, + ACTIONS(6482), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128765,8 +129166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 29, + ACTIONS(6480), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128796,12 +129196,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [78405] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1904), 1, sym_comment, - ACTIONS(6341), 12, + ACTIONS(6486), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128813,8 +129214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 29, + ACTIONS(6484), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128844,12 +129244,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [78457] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1905), 1, sym_comment, - ACTIONS(6345), 12, + ACTIONS(6490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128861,8 +129262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 29, + ACTIONS(6488), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128892,12 +129292,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [78509] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1906), 1, sym_comment, - ACTIONS(6349), 12, + ACTIONS(6494), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128909,8 +129310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 29, + ACTIONS(6492), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128940,12 +129340,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [78561] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1907), 1, sym_comment, - ACTIONS(6353), 12, + ACTIONS(6498), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128957,8 +129358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 29, + ACTIONS(6496), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128988,12 +129388,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [78613] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1908), 1, sym_comment, - ACTIONS(6359), 12, + ACTIONS(6504), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129005,8 +129406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 29, + ACTIONS(6502), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129036,12 +129436,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [78665] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1909), 1, sym_comment, - ACTIONS(6143), 12, + ACTIONS(6288), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129053,8 +129454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 29, + ACTIONS(6286), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129084,12 +129484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [78717] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1910), 1, sym_comment, - ACTIONS(6147), 12, + ACTIONS(6292), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129101,8 +129502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 29, + ACTIONS(6290), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129132,12 +129532,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [78769] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1911), 1, sym_comment, - ACTIONS(6151), 12, + ACTIONS(6296), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129149,8 +129550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 29, + ACTIONS(6294), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129180,12 +129580,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [78821] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1912), 1, sym_comment, - ACTIONS(6155), 12, + ACTIONS(6300), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129197,8 +129598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 29, + ACTIONS(6298), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129228,12 +129628,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [78873] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1913), 1, sym_comment, - ACTIONS(6159), 12, + ACTIONS(6304), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129245,8 +129646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 29, + ACTIONS(6302), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129276,12 +129676,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [78925] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1914), 1, sym_comment, - ACTIONS(6163), 12, + ACTIONS(6308), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129293,8 +129694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 29, + ACTIONS(6306), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129324,12 +129724,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [78977] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1915), 1, sym_comment, - ACTIONS(6167), 12, + ACTIONS(6312), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129341,8 +129742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 29, + ACTIONS(6310), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129372,12 +129772,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [79029] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1916), 1, sym_comment, - ACTIONS(6175), 12, + ACTIONS(6320), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129389,8 +129790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 29, + ACTIONS(6318), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129420,12 +129820,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [79081] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1917), 1, sym_comment, - ACTIONS(6183), 12, + ACTIONS(6328), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129437,8 +129838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 29, + ACTIONS(6326), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129468,12 +129868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [79133] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1918), 1, sym_comment, - ACTIONS(6199), 12, + ACTIONS(6344), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129485,8 +129886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 29, + ACTIONS(6342), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129516,12 +129916,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [79185] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1919), 1, sym_comment, - ACTIONS(6203), 12, + ACTIONS(6348), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129533,8 +129934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 29, + ACTIONS(6346), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129564,12 +129964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [79237] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1920), 1, sym_comment, - ACTIONS(6207), 12, + ACTIONS(6352), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129581,8 +129982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 29, + ACTIONS(6350), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129612,12 +130012,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [79289] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1921), 1, sym_comment, - ACTIONS(6283), 11, + ACTIONS(6428), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129628,8 +130029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 30, + ACTIONS(6426), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129660,12 +130060,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [79341] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1922), 1, sym_comment, - ACTIONS(6215), 12, + ACTIONS(6360), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129677,8 +130078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 29, + ACTIONS(6358), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129708,12 +130108,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [79393] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1923), 1, sym_comment, - ACTIONS(6219), 12, + ACTIONS(6364), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129725,8 +130126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 29, + ACTIONS(6362), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129756,12 +130156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [79445] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1924), 1, sym_comment, - ACTIONS(6223), 12, + ACTIONS(6368), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129773,8 +130174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 29, + ACTIONS(6366), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129804,12 +130204,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [79497] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1925), 1, sym_comment, - ACTIONS(6227), 12, + ACTIONS(6372), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129821,8 +130222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 29, + ACTIONS(6370), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129852,12 +130252,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [79549] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1926), 1, sym_comment, - ACTIONS(6235), 12, + ACTIONS(6380), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129869,8 +130270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 29, + ACTIONS(6378), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129900,12 +130300,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [79601] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1927), 1, sym_comment, - ACTIONS(6239), 12, + ACTIONS(6384), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129917,8 +130318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 29, + ACTIONS(6382), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129948,12 +130348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [79653] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1928), 1, sym_comment, - ACTIONS(6243), 12, + ACTIONS(6388), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129965,8 +130366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 29, + ACTIONS(6386), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129996,12 +130396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [79705] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1929), 1, sym_comment, - ACTIONS(6247), 12, + ACTIONS(6392), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130013,8 +130414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 29, + ACTIONS(6390), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130044,12 +130444,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [79757] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1930), 1, sym_comment, - ACTIONS(6251), 12, + ACTIONS(6396), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130061,8 +130462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 29, + ACTIONS(6394), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130092,12 +130492,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [79809] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1931), 1, sym_comment, - ACTIONS(6255), 12, + ACTIONS(6400), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130109,8 +130510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 29, + ACTIONS(6398), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130140,12 +130540,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [79861] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1932), 1, sym_comment, - ACTIONS(6259), 12, + ACTIONS(6404), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130157,8 +130558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 29, + ACTIONS(6402), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130188,12 +130588,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [79913] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1933), 1, sym_comment, - ACTIONS(6267), 12, + ACTIONS(6412), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130205,8 +130606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 29, + ACTIONS(6410), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130236,12 +130636,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [79965] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1934), 1, sym_comment, - ACTIONS(6271), 12, + ACTIONS(6416), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130253,8 +130654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 29, + ACTIONS(6414), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130284,12 +130684,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [80017] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1935), 1, sym_comment, - ACTIONS(6275), 12, + ACTIONS(6420), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130301,8 +130702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 29, + ACTIONS(6418), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130332,12 +130732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [80069] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1936), 1, sym_comment, - ACTIONS(6279), 12, + ACTIONS(6424), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130349,8 +130750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 29, + ACTIONS(6422), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130380,12 +130780,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [80121] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1937), 1, sym_comment, - ACTIONS(6287), 12, + ACTIONS(6432), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130397,8 +130798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 29, + ACTIONS(6430), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130428,12 +130828,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [80173] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1938), 1, sym_comment, - ACTIONS(6291), 12, + ACTIONS(6436), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130445,8 +130846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 29, + ACTIONS(6434), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130476,12 +130876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [80225] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1939), 1, sym_comment, - ACTIONS(6295), 12, + ACTIONS(6440), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130493,8 +130894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 29, + ACTIONS(6438), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130524,12 +130924,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [80277] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1940), 1, sym_comment, - ACTIONS(6299), 12, + ACTIONS(6444), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130541,8 +130942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 29, + ACTIONS(6442), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130572,12 +130972,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [80329] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1941), 1, sym_comment, - ACTIONS(6303), 12, + ACTIONS(6448), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130589,8 +130990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 29, + ACTIONS(6446), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130620,12 +131020,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [80381] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1942), 1, sym_comment, - ACTIONS(6307), 12, + ACTIONS(6452), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130637,8 +131038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 29, + ACTIONS(6450), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130668,12 +131068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [80433] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1943), 1, sym_comment, - ACTIONS(6135), 12, + ACTIONS(6280), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130685,8 +131086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 29, + ACTIONS(6278), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130716,12 +131116,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [80485] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1944), 1, sym_comment, - ACTIONS(6311), 12, + ACTIONS(6456), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130733,8 +131134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 29, + ACTIONS(6454), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130764,12 +131164,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [80537] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1945), 1, sym_comment, - ACTIONS(6315), 12, + ACTIONS(6460), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130781,8 +131182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 29, + ACTIONS(6458), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130812,12 +131212,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [80589] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1946), 1, sym_comment, - ACTIONS(6319), 12, + ACTIONS(6464), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130829,8 +131230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 29, + ACTIONS(6462), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130860,12 +131260,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [80641] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1947), 1, sym_comment, - ACTIONS(6171), 12, + ACTIONS(6316), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130877,8 +131278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 29, + ACTIONS(6314), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130908,12 +131308,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [80693] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1948), 1, sym_comment, - ACTIONS(6179), 12, + ACTIONS(6324), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130925,8 +131326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 29, + ACTIONS(6322), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130956,12 +131356,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [80745] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1949), 1, sym_comment, - ACTIONS(6187), 12, + ACTIONS(6332), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130973,8 +131374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 29, + ACTIONS(6330), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131004,12 +131404,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [80797] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1950), 1, sym_comment, - ACTIONS(6191), 12, + ACTIONS(6336), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131021,8 +131422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 29, + ACTIONS(6334), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131052,12 +131452,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [80849] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1951), 1, sym_comment, - ACTIONS(6211), 12, + ACTIONS(6356), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131069,8 +131470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 29, + ACTIONS(6354), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131100,12 +131500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [80901] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1952), 1, sym_comment, - ACTIONS(6263), 11, + ACTIONS(6408), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131116,8 +131517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 30, + ACTIONS(6406), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131148,12 +131548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [80953] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1953), 1, sym_comment, - ACTIONS(6231), 12, + ACTIONS(6376), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131165,8 +131566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 29, + ACTIONS(6374), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131196,12 +131596,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [81005] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1954), 1, sym_comment, - ACTIONS(6263), 12, + ACTIONS(6408), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131213,8 +131614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 29, + ACTIONS(6406), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131244,12 +131644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [81057] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1955), 1, sym_comment, - ACTIONS(6283), 12, + ACTIONS(6428), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131261,8 +131662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 29, + ACTIONS(6426), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131292,12 +131692,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [81109] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1956), 1, sym_comment, - ACTIONS(6375), 11, + ACTIONS(6520), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131308,8 +131709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 30, + ACTIONS(6518), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131340,12 +131740,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATendteleport, anon_sym_ATvolt, + aux_sym_text_token3, [81161] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1957), 1, sym_comment, - ACTIONS(6367), 12, + ACTIONS(6512), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131357,8 +131758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 29, + ACTIONS(6510), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131388,12 +131788,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [81213] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1958), 1, sym_comment, - ACTIONS(6363), 12, + ACTIONS(6508), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131405,8 +131806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 29, + ACTIONS(6506), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131436,12 +131836,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [81265] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1959), 1, sym_comment, - ACTIONS(6375), 11, + ACTIONS(6520), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131452,8 +131853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 30, + ACTIONS(6518), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131484,12 +131884,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, anon_sym_ATendvolt, + aux_sym_text_token3, [81317] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1960), 1, sym_comment, - ACTIONS(6367), 11, + ACTIONS(6512), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131500,8 +131901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 30, + ACTIONS(6510), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131532,12 +131932,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [81369] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1961), 1, sym_comment, - ACTIONS(6363), 11, + ACTIONS(6508), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131548,8 +131949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 30, + ACTIONS(6506), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131580,12 +131980,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [81421] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1962), 1, sym_comment, - ACTIONS(6375), 11, + ACTIONS(6520), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131596,8 +131997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 30, + ACTIONS(6518), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131628,12 +132028,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [81473] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1963), 1, sym_comment, - ACTIONS(6375), 12, + ACTIONS(6520), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131645,8 +132046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 29, + ACTIONS(6518), 30, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131676,12 +132076,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [81525] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1964), 1, sym_comment, - ACTIONS(6323), 11, + ACTIONS(6468), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131692,8 +132093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 30, + ACTIONS(6466), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -131724,12 +132124,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [81577] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1965), 1, sym_comment, - ACTIONS(6375), 11, + ACTIONS(6520), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131740,8 +132141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 30, + ACTIONS(6518), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -131772,12 +132172,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [81629] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1966), 1, sym_comment, - ACTIONS(6417), 11, + ACTIONS(6562), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131788,8 +132189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6415), 30, + ACTIONS(6560), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -131820,12 +132220,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [81681] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1967), 1, sym_comment, - ACTIONS(6231), 11, + ACTIONS(6376), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131836,8 +132237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 30, + ACTIONS(6374), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131868,12 +132268,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [81733] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1968), 1, sym_comment, - ACTIONS(6363), 11, + ACTIONS(6508), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131884,8 +132285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 30, + ACTIONS(6506), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131916,12 +132316,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [81785] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1969), 1, sym_comment, - ACTIONS(6211), 11, + ACTIONS(6356), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131932,8 +132333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 30, + ACTIONS(6354), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131964,12 +132364,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [81837] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1970), 1, sym_comment, - ACTIONS(6191), 11, + ACTIONS(6336), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131980,8 +132381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 30, + ACTIONS(6334), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132012,12 +132412,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [81889] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1971), 1, sym_comment, - ACTIONS(6329), 11, + ACTIONS(6474), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132028,8 +132429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 30, + ACTIONS(6472), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132060,12 +132460,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [81941] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1972), 1, sym_comment, - ACTIONS(6333), 11, + ACTIONS(6478), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132076,8 +132477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 30, + ACTIONS(6476), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132108,12 +132508,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [81993] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1973), 1, sym_comment, - ACTIONS(6187), 11, + ACTIONS(6332), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132124,8 +132525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 30, + ACTIONS(6330), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132156,12 +132556,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [82045] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1974), 1, sym_comment, - ACTIONS(6337), 11, + ACTIONS(6482), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132172,8 +132573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 30, + ACTIONS(6480), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132204,12 +132604,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [82097] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1975), 1, sym_comment, - ACTIONS(6179), 11, + ACTIONS(6324), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132220,8 +132621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 30, + ACTIONS(6322), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132252,12 +132652,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [82149] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1976), 1, sym_comment, - ACTIONS(6171), 11, + ACTIONS(6316), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132268,8 +132669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 30, + ACTIONS(6314), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132300,12 +132700,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [82201] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1977), 1, sym_comment, - ACTIONS(6319), 11, + ACTIONS(6464), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132316,8 +132717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 30, + ACTIONS(6462), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132348,12 +132748,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [82253] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1978), 1, sym_comment, - ACTIONS(6315), 11, + ACTIONS(6460), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132364,8 +132765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 30, + ACTIONS(6458), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132396,12 +132796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [82305] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1979), 1, sym_comment, - ACTIONS(6341), 11, + ACTIONS(6486), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132412,8 +132813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 30, + ACTIONS(6484), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132444,12 +132844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [82357] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1980), 1, sym_comment, - ACTIONS(6345), 11, + ACTIONS(6490), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132460,8 +132861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 30, + ACTIONS(6488), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132492,12 +132892,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [82409] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1981), 1, sym_comment, - ACTIONS(6349), 11, + ACTIONS(6494), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132508,8 +132909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 30, + ACTIONS(6492), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132540,12 +132940,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [82461] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1982), 1, sym_comment, - ACTIONS(6311), 11, + ACTIONS(6456), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132556,8 +132957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 30, + ACTIONS(6454), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132588,12 +132988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [82513] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1983), 1, sym_comment, - ACTIONS(6135), 11, + ACTIONS(6280), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132604,8 +133005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 30, + ACTIONS(6278), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132636,12 +133036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [82565] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1984), 1, sym_comment, - ACTIONS(6353), 11, + ACTIONS(6498), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132652,8 +133053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 30, + ACTIONS(6496), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132684,12 +133084,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [82617] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1985), 1, sym_comment, - ACTIONS(6359), 11, + ACTIONS(6504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132700,8 +133101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 30, + ACTIONS(6502), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132732,12 +133132,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [82669] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1986), 1, sym_comment, - ACTIONS(6143), 11, + ACTIONS(6288), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132748,8 +133149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 30, + ACTIONS(6286), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132780,12 +133180,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [82721] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1987), 1, sym_comment, - ACTIONS(6147), 11, + ACTIONS(6292), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132796,8 +133197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 30, + ACTIONS(6290), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -132828,12 +133228,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [82773] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1988), 1, sym_comment, - ACTIONS(6303), 11, + ACTIONS(6448), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132844,8 +133245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 30, + ACTIONS(6446), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132876,12 +133276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [82825] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1989), 1, sym_comment, - ACTIONS(6299), 11, + ACTIONS(6444), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132892,8 +133293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 30, + ACTIONS(6442), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132924,12 +133324,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [82877] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1990), 1, sym_comment, - ACTIONS(6295), 11, + ACTIONS(6440), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132940,8 +133341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 30, + ACTIONS(6438), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132972,12 +133372,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [82929] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1991), 1, sym_comment, - ACTIONS(6291), 11, + ACTIONS(6436), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132988,8 +133389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 30, + ACTIONS(6434), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133020,12 +133420,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [82981] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1992), 1, sym_comment, - ACTIONS(6287), 11, + ACTIONS(6432), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133036,8 +133437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 30, + ACTIONS(6430), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133068,12 +133468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [83033] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1993), 1, sym_comment, - ACTIONS(6279), 11, + ACTIONS(6424), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133084,8 +133485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 30, + ACTIONS(6422), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133116,12 +133516,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [83085] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1994), 1, sym_comment, - ACTIONS(6275), 11, + ACTIONS(6420), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133132,8 +133533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 30, + ACTIONS(6418), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133164,12 +133564,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [83137] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1995), 1, sym_comment, - ACTIONS(6151), 11, + ACTIONS(6296), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133180,8 +133581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 30, + ACTIONS(6294), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -133212,12 +133612,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [83189] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1996), 1, sym_comment, - ACTIONS(6155), 11, + ACTIONS(6300), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133228,8 +133629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 30, + ACTIONS(6298), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -133260,12 +133660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [83241] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1997), 1, sym_comment, - ACTIONS(6159), 11, + ACTIONS(6304), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133276,8 +133677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 30, + ACTIONS(6302), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -133308,12 +133708,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [83293] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1998), 1, sym_comment, - ACTIONS(6363), 11, + ACTIONS(6508), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133324,8 +133725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 30, + ACTIONS(6506), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133356,12 +133756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [83345] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(1999), 1, sym_comment, - ACTIONS(6267), 11, + ACTIONS(6412), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133372,8 +133773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 30, + ACTIONS(6410), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133404,12 +133804,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [83397] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2000), 1, sym_comment, - ACTIONS(6163), 11, + ACTIONS(6308), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133420,8 +133821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 30, + ACTIONS(6306), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -133452,12 +133852,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [83449] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2001), 1, sym_comment, - ACTIONS(6167), 11, + ACTIONS(6312), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133468,8 +133869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 30, + ACTIONS(6310), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -133500,12 +133900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [83501] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2002), 1, sym_comment, - ACTIONS(6175), 11, + ACTIONS(6320), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133516,8 +133917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 30, + ACTIONS(6318), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -133548,12 +133948,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [83553] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2003), 1, sym_comment, - ACTIONS(6259), 11, + ACTIONS(6404), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133564,8 +133965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 30, + ACTIONS(6402), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133596,12 +133996,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [83605] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2004), 1, sym_comment, - ACTIONS(6255), 11, + ACTIONS(6400), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133612,8 +134013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 30, + ACTIONS(6398), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133644,12 +134044,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [83657] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2005), 1, sym_comment, - ACTIONS(6251), 11, + ACTIONS(6396), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133660,8 +134061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 30, + ACTIONS(6394), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133692,12 +134092,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [83709] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2006), 1, sym_comment, - ACTIONS(6247), 11, + ACTIONS(6392), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133708,8 +134109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 30, + ACTIONS(6390), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133740,12 +134140,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [83761] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2007), 1, sym_comment, - ACTIONS(6243), 11, + ACTIONS(6388), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133756,8 +134157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 30, + ACTIONS(6386), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133788,12 +134188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [83813] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2008), 1, sym_comment, - ACTIONS(6239), 11, + ACTIONS(6384), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133804,8 +134205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 30, + ACTIONS(6382), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133836,12 +134236,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [83865] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2009), 1, sym_comment, - ACTIONS(6235), 11, + ACTIONS(6380), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133852,8 +134253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 30, + ACTIONS(6378), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133884,12 +134284,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [83917] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2010), 1, sym_comment, - ACTIONS(6227), 11, + ACTIONS(6372), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133900,8 +134301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 30, + ACTIONS(6370), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133932,12 +134332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [83969] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2011), 1, sym_comment, - ACTIONS(6223), 11, + ACTIONS(6368), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133948,8 +134349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 30, + ACTIONS(6366), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133980,12 +134380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [84021] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2012), 1, sym_comment, - ACTIONS(6413), 11, + ACTIONS(6558), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133996,8 +134397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6411), 30, + ACTIONS(6556), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134028,12 +134428,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [84073] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2013), 1, sym_comment, - ACTIONS(6183), 11, + ACTIONS(6328), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134044,8 +134445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 30, + ACTIONS(6326), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134076,12 +134476,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [84125] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2014), 1, sym_comment, - ACTIONS(6199), 11, + ACTIONS(6344), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134092,8 +134493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 30, + ACTIONS(6342), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134124,12 +134524,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [84177] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2015), 1, sym_comment, - ACTIONS(6219), 11, + ACTIONS(6364), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134140,8 +134541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 30, + ACTIONS(6362), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134172,12 +134572,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [84229] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2016), 1, sym_comment, - ACTIONS(6215), 11, + ACTIONS(6360), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134188,8 +134589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 30, + ACTIONS(6358), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134220,12 +134620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [84281] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2017), 1, sym_comment, - ACTIONS(6367), 11, + ACTIONS(6512), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134236,8 +134637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 30, + ACTIONS(6510), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134268,12 +134668,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [84333] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2018), 1, sym_comment, - ACTIONS(6207), 11, + ACTIONS(6352), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134284,8 +134685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 30, + ACTIONS(6350), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134316,12 +134716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [84385] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2019), 1, sym_comment, - ACTIONS(6203), 11, + ACTIONS(6348), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134332,8 +134733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 30, + ACTIONS(6346), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134364,12 +134764,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [84437] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2020), 1, sym_comment, - ACTIONS(6207), 11, + ACTIONS(6352), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134380,8 +134781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 30, + ACTIONS(6350), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134412,12 +134812,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [84489] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2021), 1, sym_comment, - ACTIONS(6367), 11, + ACTIONS(6512), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134428,8 +134829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 30, + ACTIONS(6510), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134460,12 +134860,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [84541] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2022), 1, sym_comment, - ACTIONS(6215), 11, + ACTIONS(6360), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134476,8 +134877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 30, + ACTIONS(6358), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134508,12 +134908,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [84593] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2023), 1, sym_comment, - ACTIONS(6219), 11, + ACTIONS(6364), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134524,8 +134925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 30, + ACTIONS(6362), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134556,12 +134956,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [84645] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2024), 1, sym_comment, - ACTIONS(6223), 11, + ACTIONS(6368), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134572,8 +134973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 30, + ACTIONS(6366), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134604,12 +135004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [84697] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2025), 1, sym_comment, - ACTIONS(6203), 11, + ACTIONS(6348), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134620,8 +135021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 30, + ACTIONS(6346), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134652,12 +135052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [84749] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2026), 1, sym_comment, - ACTIONS(6199), 11, + ACTIONS(6344), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134668,8 +135069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 30, + ACTIONS(6342), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134700,12 +135100,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [84801] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2027), 1, sym_comment, - ACTIONS(6183), 11, + ACTIONS(6328), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134716,8 +135117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 30, + ACTIONS(6326), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134748,12 +135148,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [84853] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2028), 1, sym_comment, - ACTIONS(6413), 11, + ACTIONS(6558), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134764,8 +135165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6411), 30, + ACTIONS(6556), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134796,12 +135196,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [84905] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2029), 1, sym_comment, - ACTIONS(6227), 11, + ACTIONS(6372), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134812,8 +135213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 30, + ACTIONS(6370), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134844,12 +135244,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [84957] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2030), 1, sym_comment, - ACTIONS(6235), 11, + ACTIONS(6380), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134860,8 +135261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 30, + ACTIONS(6378), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134892,12 +135292,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [85009] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2031), 1, sym_comment, - ACTIONS(6239), 11, + ACTIONS(6384), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134908,8 +135309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 30, + ACTIONS(6382), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -134940,12 +135340,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [85061] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2032), 1, sym_comment, - ACTIONS(6175), 11, + ACTIONS(6320), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134956,8 +135357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 30, + ACTIONS(6318), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134988,12 +135388,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [85113] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2033), 1, sym_comment, - ACTIONS(6167), 11, + ACTIONS(6312), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135004,8 +135405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 30, + ACTIONS(6310), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135036,12 +135436,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [85165] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2034), 1, sym_comment, - ACTIONS(6163), 11, + ACTIONS(6308), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135052,8 +135453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 30, + ACTIONS(6306), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135084,12 +135484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [85217] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2035), 1, sym_comment, - ACTIONS(6159), 11, + ACTIONS(6304), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135100,8 +135501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 30, + ACTIONS(6302), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135132,12 +135532,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [85269] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2036), 1, sym_comment, - ACTIONS(6155), 11, + ACTIONS(6300), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135148,8 +135549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 30, + ACTIONS(6298), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135180,12 +135580,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [85321] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2037), 1, sym_comment, - ACTIONS(6151), 11, + ACTIONS(6296), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135196,8 +135597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 30, + ACTIONS(6294), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135228,12 +135628,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [85373] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2038), 1, sym_comment, - ACTIONS(6147), 11, + ACTIONS(6292), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135244,8 +135645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 30, + ACTIONS(6290), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135276,12 +135676,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [85425] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2039), 1, sym_comment, - ACTIONS(6143), 11, + ACTIONS(6288), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135292,8 +135693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 30, + ACTIONS(6286), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135324,12 +135724,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [85477] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2040), 1, sym_comment, - ACTIONS(6243), 11, + ACTIONS(6388), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135340,8 +135741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 30, + ACTIONS(6386), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -135372,12 +135772,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [85529] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2041), 1, sym_comment, - ACTIONS(6247), 11, + ACTIONS(6392), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135388,8 +135789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 30, + ACTIONS(6390), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -135420,12 +135820,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [85581] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2042), 1, sym_comment, - ACTIONS(6251), 11, + ACTIONS(6396), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135436,8 +135837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 30, + ACTIONS(6394), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -135468,12 +135868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [85633] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2043), 1, sym_comment, - ACTIONS(6359), 11, + ACTIONS(6504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135484,8 +135885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 30, + ACTIONS(6502), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135516,12 +135916,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [85685] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2044), 1, sym_comment, - ACTIONS(6353), 11, + ACTIONS(6498), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135532,8 +135933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 30, + ACTIONS(6496), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135564,12 +135964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [85737] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2045), 1, sym_comment, - ACTIONS(6255), 11, + ACTIONS(6400), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135580,8 +135981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 30, + ACTIONS(6398), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -135612,12 +136012,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [85789] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2046), 1, sym_comment, - ACTIONS(6267), 11, + ACTIONS(6412), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135628,8 +136029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 30, + ACTIONS(6410), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -135660,12 +136060,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [85841] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2047), 1, sym_comment, - ACTIONS(6271), 11, + ACTIONS(6416), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135676,8 +136077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 30, + ACTIONS(6414), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -135708,12 +136108,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [85893] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2048), 1, sym_comment, - ACTIONS(6349), 11, + ACTIONS(6494), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135724,8 +136125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 30, + ACTIONS(6492), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135756,12 +136156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [85945] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2049), 1, sym_comment, - ACTIONS(6345), 11, + ACTIONS(6490), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135772,8 +136173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 30, + ACTIONS(6488), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135804,12 +136204,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [85997] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2050), 1, sym_comment, - ACTIONS(6341), 11, + ACTIONS(6486), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135820,8 +136221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 30, + ACTIONS(6484), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135852,12 +136252,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [86049] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2051), 1, sym_comment, - ACTIONS(6337), 11, + ACTIONS(6482), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135868,8 +136269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 30, + ACTIONS(6480), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135900,12 +136300,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [86101] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2052), 1, sym_comment, - ACTIONS(6333), 11, + ACTIONS(6478), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135916,8 +136317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 30, + ACTIONS(6476), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135948,12 +136348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [86153] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2053), 1, sym_comment, - ACTIONS(6329), 11, + ACTIONS(6474), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135964,8 +136365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 30, + ACTIONS(6472), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135996,12 +136396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [86205] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2054), 1, sym_comment, - ACTIONS(6375), 11, + ACTIONS(6520), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136012,8 +136413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 30, + ACTIONS(6518), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136044,12 +136444,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [86257] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2055), 1, sym_comment, - ACTIONS(6323), 11, + ACTIONS(6468), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136060,8 +136461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 30, + ACTIONS(6466), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136092,12 +136492,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [86309] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2056), 1, sym_comment, - ACTIONS(6363), 11, + ACTIONS(6508), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136108,8 +136509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 30, + ACTIONS(6506), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136140,12 +136540,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [86361] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2057), 1, sym_comment, - ACTIONS(6367), 11, + ACTIONS(6512), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136156,8 +136557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 30, + ACTIONS(6510), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136188,12 +136588,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [86413] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2058), 1, sym_comment, - ACTIONS(6275), 11, + ACTIONS(6420), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136204,8 +136605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 30, + ACTIONS(6418), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136236,12 +136636,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [86465] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2059), 1, sym_comment, - ACTIONS(6279), 11, + ACTIONS(6424), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136252,8 +136653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 30, + ACTIONS(6422), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136284,12 +136684,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [86517] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2060), 1, sym_comment, - ACTIONS(6287), 11, + ACTIONS(6432), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136300,8 +136701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 30, + ACTIONS(6430), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136332,12 +136732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [86569] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2061), 1, sym_comment, - ACTIONS(6413), 11, + ACTIONS(6558), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136348,8 +136749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6411), 30, + ACTIONS(6556), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136380,12 +136780,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [86621] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2062), 1, sym_comment, - ACTIONS(6291), 11, + ACTIONS(6436), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136396,8 +136797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 30, + ACTIONS(6434), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136428,12 +136828,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [86673] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2063), 1, sym_comment, - ACTIONS(6375), 11, + ACTIONS(6520), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136444,8 +136845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6373), 30, + ACTIONS(6518), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136476,12 +136876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [86725] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2064), 1, sym_comment, - ACTIONS(6363), 11, + ACTIONS(6508), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136492,8 +136893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 30, + ACTIONS(6506), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136524,12 +136924,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [86777] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2065), 1, sym_comment, - ACTIONS(6295), 11, + ACTIONS(6440), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136540,8 +136941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 30, + ACTIONS(6438), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136572,12 +136972,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [86829] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2066), 1, sym_comment, - ACTIONS(6299), 11, + ACTIONS(6444), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136588,8 +136989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 30, + ACTIONS(6442), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136620,12 +137020,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [86881] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2067), 1, sym_comment, - ACTIONS(6303), 11, + ACTIONS(6448), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136636,8 +137037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 30, + ACTIONS(6446), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136668,12 +137068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [86933] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2068), 1, sym_comment, - ACTIONS(6307), 11, + ACTIONS(6452), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136684,8 +137085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 30, + ACTIONS(6450), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136716,12 +137116,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [86985] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2069), 1, sym_comment, - ACTIONS(6135), 11, + ACTIONS(6280), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136732,8 +137133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 30, + ACTIONS(6278), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -136764,12 +137164,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [87037] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2070), 1, sym_comment, - ACTIONS(6367), 11, + ACTIONS(6512), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136780,8 +137181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 30, + ACTIONS(6510), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136812,12 +137212,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [87089] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2071), 1, sym_comment, - ACTIONS(6413), 11, + ACTIONS(6558), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136828,8 +137229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6411), 30, + ACTIONS(6556), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136860,12 +137260,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [87141] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2072), 1, sym_comment, - ACTIONS(6239), 11, + ACTIONS(6384), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136876,8 +137277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 30, + ACTIONS(6382), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136908,12 +137308,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [87193] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2073), 1, sym_comment, - ACTIONS(6367), 11, + ACTIONS(6512), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136924,8 +137325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 30, + ACTIONS(6510), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136956,12 +137356,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [87245] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2074), 1, sym_comment, - ACTIONS(6311), 11, + ACTIONS(6456), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136972,8 +137373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 30, + ACTIONS(6454), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137004,12 +137404,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [87297] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2075), 1, sym_comment, - ACTIONS(6315), 11, + ACTIONS(6460), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137020,8 +137421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 30, + ACTIONS(6458), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137052,12 +137452,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [87349] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2076), 1, sym_comment, - ACTIONS(6319), 11, + ACTIONS(6464), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137068,8 +137469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 30, + ACTIONS(6462), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137100,12 +137500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [87401] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2077), 1, sym_comment, - ACTIONS(6413), 11, + ACTIONS(6558), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137116,8 +137517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6411), 30, + ACTIONS(6556), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137148,12 +137548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [87453] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2078), 1, sym_comment, - ACTIONS(6283), 11, + ACTIONS(6428), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137164,8 +137565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 30, + ACTIONS(6426), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137196,12 +137596,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [87505] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2079), 1, sym_comment, - ACTIONS(6263), 11, + ACTIONS(6408), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137212,8 +137613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 30, + ACTIONS(6406), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137244,12 +137644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [87557] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2080), 1, sym_comment, - ACTIONS(6231), 11, + ACTIONS(6376), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137260,8 +137661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 30, + ACTIONS(6374), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137292,12 +137692,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [87609] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2081), 1, sym_comment, - ACTIONS(6363), 11, + ACTIONS(6508), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137308,8 +137709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 30, + ACTIONS(6506), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137340,12 +137740,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [87661] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2082), 1, sym_comment, - ACTIONS(6211), 11, + ACTIONS(6356), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137356,8 +137757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 30, + ACTIONS(6354), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137388,12 +137788,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [87713] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2083), 1, sym_comment, - ACTIONS(6191), 11, + ACTIONS(6336), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137404,8 +137805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 30, + ACTIONS(6334), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137436,12 +137836,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [87765] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2084), 1, sym_comment, - ACTIONS(6187), 11, + ACTIONS(6332), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137452,8 +137853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 30, + ACTIONS(6330), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137484,12 +137884,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [87817] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2085), 1, sym_comment, - ACTIONS(6171), 11, + ACTIONS(6316), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137500,8 +137901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 30, + ACTIONS(6314), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137532,12 +137932,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [87869] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2086), 1, sym_comment, - ACTIONS(6179), 11, + ACTIONS(6324), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137548,8 +137949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 30, + ACTIONS(6322), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137580,12 +137980,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [87921] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2087), 1, sym_comment, - ACTIONS(6179), 11, + ACTIONS(6324), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137596,8 +137997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 30, + ACTIONS(6322), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137628,12 +138028,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [87973] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2088), 1, sym_comment, - ACTIONS(6187), 11, + ACTIONS(6332), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137644,8 +138045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 30, + ACTIONS(6330), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137676,12 +138076,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [88025] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2089), 1, sym_comment, - ACTIONS(6171), 11, + ACTIONS(6316), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137692,8 +138093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 30, + ACTIONS(6314), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137724,12 +138124,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [88077] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2090), 1, sym_comment, - ACTIONS(6319), 11, + ACTIONS(6464), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137740,8 +138141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 30, + ACTIONS(6462), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137772,12 +138172,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [88129] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2091), 1, sym_comment, - ACTIONS(6191), 11, + ACTIONS(6336), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137788,8 +138189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 30, + ACTIONS(6334), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137820,12 +138220,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [88181] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2092), 1, sym_comment, - ACTIONS(6211), 11, + ACTIONS(6356), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137836,8 +138237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 30, + ACTIONS(6354), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137868,12 +138268,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [88233] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2093), 1, sym_comment, - ACTIONS(6363), 11, + ACTIONS(6508), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137884,8 +138285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 30, + ACTIONS(6506), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -137916,12 +138316,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [88285] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2094), 1, sym_comment, - ACTIONS(6315), 11, + ACTIONS(6460), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137932,8 +138333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 30, + ACTIONS(6458), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137964,12 +138364,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [88337] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2095), 1, sym_comment, - ACTIONS(6311), 11, + ACTIONS(6456), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137980,8 +138381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 30, + ACTIONS(6454), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138012,12 +138412,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [88389] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2096), 1, sym_comment, - ACTIONS(6135), 11, + ACTIONS(6280), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138028,8 +138429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 30, + ACTIONS(6278), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138060,12 +138460,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [88441] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2097), 1, sym_comment, - ACTIONS(6307), 11, + ACTIONS(6452), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138076,8 +138477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 30, + ACTIONS(6450), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138108,12 +138508,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [88493] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2098), 1, sym_comment, - ACTIONS(6303), 11, + ACTIONS(6448), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138124,8 +138525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 30, + ACTIONS(6446), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138156,12 +138556,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [88545] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2099), 1, sym_comment, - ACTIONS(6299), 11, + ACTIONS(6444), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138172,8 +138573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 30, + ACTIONS(6442), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138204,12 +138604,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [88597] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2100), 1, sym_comment, - ACTIONS(6295), 11, + ACTIONS(6440), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138220,8 +138621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 30, + ACTIONS(6438), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138252,12 +138652,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [88649] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2101), 1, sym_comment, - ACTIONS(6291), 11, + ACTIONS(6436), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138268,8 +138669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 30, + ACTIONS(6434), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138300,12 +138700,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [88701] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2102), 1, sym_comment, - ACTIONS(6287), 11, + ACTIONS(6432), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138316,8 +138717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 30, + ACTIONS(6430), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138348,12 +138748,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [88753] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2103), 1, sym_comment, - ACTIONS(6279), 11, + ACTIONS(6424), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138364,8 +138765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 30, + ACTIONS(6422), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138396,12 +138796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [88805] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2104), 1, sym_comment, - ACTIONS(6231), 11, + ACTIONS(6376), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138412,8 +138813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 30, + ACTIONS(6374), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -138444,12 +138844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [88857] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2105), 1, sym_comment, - ACTIONS(6263), 11, + ACTIONS(6408), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138460,8 +138861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 30, + ACTIONS(6406), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -138492,12 +138892,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [88909] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2106), 1, sym_comment, - ACTIONS(6283), 11, + ACTIONS(6428), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138508,8 +138909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 30, + ACTIONS(6426), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -138540,12 +138940,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [88961] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2107), 1, sym_comment, - ACTIONS(6275), 11, + ACTIONS(6420), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138556,8 +138957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 30, + ACTIONS(6418), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138588,12 +138988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [89013] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2108), 1, sym_comment, - ACTIONS(6323), 11, + ACTIONS(6468), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138604,8 +139005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 30, + ACTIONS(6466), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138636,12 +139036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [89065] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2109), 1, sym_comment, - ACTIONS(6271), 11, + ACTIONS(6416), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138652,8 +139053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 30, + ACTIONS(6414), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138684,12 +139084,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [89117] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2110), 1, sym_comment, - ACTIONS(6267), 11, + ACTIONS(6412), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138700,8 +139101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 30, + ACTIONS(6410), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138732,12 +139132,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [89169] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2111), 1, sym_comment, - ACTIONS(6417), 11, + ACTIONS(6562), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138748,8 +139149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6415), 30, + ACTIONS(6560), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138780,12 +139180,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [89221] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2112), 1, sym_comment, - ACTIONS(6329), 11, + ACTIONS(6474), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138796,8 +139197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 30, + ACTIONS(6472), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138828,12 +139228,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [89273] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2113), 1, sym_comment, - ACTIONS(6333), 11, + ACTIONS(6478), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138844,8 +139245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 30, + ACTIONS(6476), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138876,12 +139276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [89325] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2114), 1, sym_comment, - ACTIONS(6337), 11, + ACTIONS(6482), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138892,8 +139293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 30, + ACTIONS(6480), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138924,12 +139324,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [89377] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2115), 1, sym_comment, - ACTIONS(6341), 11, + ACTIONS(6486), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138940,8 +139341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 30, + ACTIONS(6484), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138972,12 +139372,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [89429] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2116), 1, sym_comment, - ACTIONS(6259), 11, + ACTIONS(6404), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138988,8 +139389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 30, + ACTIONS(6402), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139020,12 +139420,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [89481] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2117), 1, sym_comment, - ACTIONS(6255), 11, + ACTIONS(6400), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139036,8 +139437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 30, + ACTIONS(6398), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139068,12 +139468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [89533] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2118), 1, sym_comment, - ACTIONS(6251), 11, + ACTIONS(6396), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139084,8 +139485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 30, + ACTIONS(6394), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139116,12 +139516,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [89585] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2119), 1, sym_comment, - ACTIONS(6247), 11, + ACTIONS(6392), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139132,8 +139533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 30, + ACTIONS(6390), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139164,12 +139564,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [89637] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2120), 1, sym_comment, - ACTIONS(6345), 11, + ACTIONS(6490), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139180,8 +139581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 30, + ACTIONS(6488), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139212,12 +139612,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [89689] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2121), 1, sym_comment, - ACTIONS(6349), 11, + ACTIONS(6494), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139228,8 +139629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 30, + ACTIONS(6492), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139260,12 +139660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [89741] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2122), 1, sym_comment, - ACTIONS(6353), 11, + ACTIONS(6498), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139276,8 +139677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 30, + ACTIONS(6496), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139308,12 +139708,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [89793] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2123), 1, sym_comment, - ACTIONS(6243), 11, + ACTIONS(6388), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139324,8 +139725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 30, + ACTIONS(6386), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139356,12 +139756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [89845] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2124), 1, sym_comment, - ACTIONS(6329), 11, + ACTIONS(6474), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139372,8 +139773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6327), 30, + ACTIONS(6472), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139404,12 +139804,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [89897] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2125), 1, sym_comment, - ACTIONS(6235), 11, + ACTIONS(6380), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139420,8 +139821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 30, + ACTIONS(6378), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139452,12 +139852,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [89949] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2126), 1, sym_comment, - ACTIONS(6227), 11, + ACTIONS(6372), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139468,8 +139869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 30, + ACTIONS(6370), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139500,12 +139900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [90001] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2127), 1, sym_comment, - ACTIONS(6223), 11, + ACTIONS(6368), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139516,8 +139917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 30, + ACTIONS(6366), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139548,12 +139948,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [90053] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2128), 1, sym_comment, - ACTIONS(6219), 11, + ACTIONS(6364), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139564,8 +139965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 30, + ACTIONS(6362), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139596,12 +139996,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [90105] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2129), 1, sym_comment, - ACTIONS(6215), 11, + ACTIONS(6360), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139612,8 +140013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 30, + ACTIONS(6358), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139644,12 +140044,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [90157] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2130), 1, sym_comment, - ACTIONS(6367), 11, + ACTIONS(6512), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139660,8 +140061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 30, + ACTIONS(6510), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139692,12 +140092,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [90209] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2131), 1, sym_comment, - ACTIONS(6359), 11, + ACTIONS(6504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139708,8 +140109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 30, + ACTIONS(6502), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139740,12 +140140,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [90261] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2132), 1, sym_comment, - ACTIONS(6259), 11, + ACTIONS(6404), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139756,8 +140157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 30, + ACTIONS(6402), 31, ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, @@ -139788,12 +140188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [90313] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2133), 1, sym_comment, - ACTIONS(6147), 11, + ACTIONS(6292), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139804,8 +140205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 30, + ACTIONS(6290), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139836,12 +140236,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [90365] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2134), 1, sym_comment, - ACTIONS(6207), 11, + ACTIONS(6352), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139852,8 +140253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 30, + ACTIONS(6350), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139884,12 +140284,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [90417] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2135), 1, sym_comment, - ACTIONS(6151), 11, + ACTIONS(6296), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139900,8 +140301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 30, + ACTIONS(6294), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139932,12 +140332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [90469] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2136), 1, sym_comment, - ACTIONS(6155), 11, + ACTIONS(6300), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139948,8 +140349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 30, + ACTIONS(6298), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139980,12 +140380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [90521] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2137), 1, sym_comment, - ACTIONS(6159), 11, + ACTIONS(6304), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139996,8 +140397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 30, + ACTIONS(6302), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140028,12 +140428,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [90573] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2138), 1, sym_comment, - ACTIONS(6163), 11, + ACTIONS(6308), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140044,8 +140445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 30, + ACTIONS(6306), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140076,12 +140476,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [90625] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2139), 1, sym_comment, - ACTIONS(6203), 11, + ACTIONS(6348), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140092,8 +140493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 30, + ACTIONS(6346), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140124,12 +140524,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [90677] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2140), 1, sym_comment, - ACTIONS(6199), 11, + ACTIONS(6344), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140140,8 +140541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 30, + ACTIONS(6342), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140172,12 +140572,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [90729] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2141), 1, sym_comment, - ACTIONS(6183), 11, + ACTIONS(6328), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140188,8 +140589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 30, + ACTIONS(6326), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140220,12 +140620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [90781] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2142), 1, sym_comment, - ACTIONS(6413), 11, + ACTIONS(6558), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140236,8 +140637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6411), 30, + ACTIONS(6556), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140268,12 +140668,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [90833] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2143), 1, sym_comment, - ACTIONS(6175), 11, + ACTIONS(6320), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140284,8 +140685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 30, + ACTIONS(6318), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140316,12 +140716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [90885] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2144), 1, sym_comment, - ACTIONS(6167), 11, + ACTIONS(6312), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140332,8 +140733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 30, + ACTIONS(6310), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140364,12 +140764,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [90937] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2145), 1, sym_comment, - ACTIONS(6163), 11, + ACTIONS(6308), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140380,8 +140781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6161), 30, + ACTIONS(6306), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140412,12 +140812,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [90989] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2146), 1, sym_comment, - ACTIONS(6159), 11, + ACTIONS(6304), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140428,8 +140829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6157), 30, + ACTIONS(6302), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140460,12 +140860,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [91041] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2147), 1, sym_comment, - ACTIONS(6155), 11, + ACTIONS(6300), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140476,8 +140877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6153), 30, + ACTIONS(6298), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140508,12 +140908,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [91093] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2148), 1, sym_comment, - ACTIONS(6151), 11, + ACTIONS(6296), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140524,8 +140925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6149), 30, + ACTIONS(6294), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140556,12 +140956,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [91145] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2149), 1, sym_comment, - ACTIONS(6147), 11, + ACTIONS(6292), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140572,8 +140973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6145), 30, + ACTIONS(6290), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140604,12 +141004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [91197] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2150), 1, sym_comment, - ACTIONS(6167), 11, + ACTIONS(6312), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140620,8 +141021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6165), 30, + ACTIONS(6310), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140652,12 +141052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [91249] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2151), 1, sym_comment, - ACTIONS(6175), 11, + ACTIONS(6320), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140668,8 +141069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6173), 30, + ACTIONS(6318), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140700,12 +141100,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [91301] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2152), 1, sym_comment, - ACTIONS(6413), 11, + ACTIONS(6558), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140716,8 +141117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6411), 30, + ACTIONS(6556), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140748,12 +141148,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [91353] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2153), 1, sym_comment, - ACTIONS(6183), 11, + ACTIONS(6328), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140764,8 +141165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6181), 30, + ACTIONS(6326), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140796,12 +141196,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [91405] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2154), 1, sym_comment, - ACTIONS(6199), 11, + ACTIONS(6344), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140812,8 +141213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6197), 30, + ACTIONS(6342), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140844,12 +141244,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [91457] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2155), 1, sym_comment, - ACTIONS(6143), 11, + ACTIONS(6288), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140860,8 +141261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 30, + ACTIONS(6286), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140892,12 +141292,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [91509] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2156), 1, sym_comment, - ACTIONS(6359), 11, + ACTIONS(6504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140908,8 +141309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6357), 30, + ACTIONS(6502), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140940,12 +141340,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [91561] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2157), 1, sym_comment, - ACTIONS(6203), 11, + ACTIONS(6348), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140956,8 +141357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6201), 30, + ACTIONS(6346), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140988,12 +141388,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [91613] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2158), 1, sym_comment, - ACTIONS(6207), 11, + ACTIONS(6352), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141004,8 +141405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6205), 30, + ACTIONS(6350), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141036,12 +141436,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [91665] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2159), 1, sym_comment, - ACTIONS(6367), 11, + ACTIONS(6512), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141052,8 +141453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6365), 30, + ACTIONS(6510), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141084,12 +141484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [91717] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2160), 1, sym_comment, - ACTIONS(6215), 11, + ACTIONS(6360), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141100,8 +141501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6213), 30, + ACTIONS(6358), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141132,12 +141532,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [91769] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2161), 1, sym_comment, - ACTIONS(6353), 11, + ACTIONS(6498), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141148,8 +141549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6351), 30, + ACTIONS(6496), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141180,12 +141580,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [91821] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2162), 1, sym_comment, - ACTIONS(6349), 11, + ACTIONS(6494), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141196,8 +141597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6347), 30, + ACTIONS(6492), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141228,12 +141628,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [91873] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2163), 1, sym_comment, - ACTIONS(6345), 11, + ACTIONS(6490), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141244,8 +141645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6343), 30, + ACTIONS(6488), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141276,12 +141676,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [91925] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2164), 1, sym_comment, - ACTIONS(6341), 11, + ACTIONS(6486), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141292,8 +141693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6339), 30, + ACTIONS(6484), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141324,12 +141724,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [91977] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2165), 1, sym_comment, - ACTIONS(6219), 11, + ACTIONS(6364), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141340,8 +141741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6217), 30, + ACTIONS(6362), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141372,12 +141772,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [92029] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2166), 1, sym_comment, - ACTIONS(6223), 11, + ACTIONS(6368), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141388,8 +141789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6221), 30, + ACTIONS(6366), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141420,12 +141820,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [92081] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2167), 1, sym_comment, - ACTIONS(6227), 11, + ACTIONS(6372), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141436,8 +141837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6225), 30, + ACTIONS(6370), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141468,12 +141868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [92133] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2168), 1, sym_comment, - ACTIONS(6337), 11, + ACTIONS(6482), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141484,8 +141885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6335), 30, + ACTIONS(6480), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141516,12 +141916,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [92185] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2169), 1, sym_comment, - ACTIONS(6333), 11, + ACTIONS(6478), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141532,8 +141933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6331), 30, + ACTIONS(6476), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141564,12 +141964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [92237] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2170), 1, sym_comment, - ACTIONS(6143), 11, + ACTIONS(6288), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141580,8 +141981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6141), 30, + ACTIONS(6286), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141612,12 +142012,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [92289] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2171), 1, sym_comment, - ACTIONS(6323), 11, + ACTIONS(6468), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141628,8 +142029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6321), 30, + ACTIONS(6466), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141660,12 +142060,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [92341] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2172), 1, sym_comment, - ACTIONS(6283), 11, + ACTIONS(6428), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141676,8 +142077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6281), 30, + ACTIONS(6426), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141708,12 +142108,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [92393] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2173), 1, sym_comment, - ACTIONS(6263), 11, + ACTIONS(6408), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141724,8 +142125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6261), 30, + ACTIONS(6406), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141756,12 +142156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [92445] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2174), 1, sym_comment, - ACTIONS(6231), 11, + ACTIONS(6376), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141772,8 +142173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6229), 30, + ACTIONS(6374), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141804,12 +142204,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [92497] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2175), 1, sym_comment, - ACTIONS(6235), 11, + ACTIONS(6380), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141820,8 +142221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6233), 30, + ACTIONS(6378), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141852,12 +142252,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [92549] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2176), 1, sym_comment, - ACTIONS(6363), 11, + ACTIONS(6508), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141868,8 +142269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6361), 30, + ACTIONS(6506), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141900,12 +142300,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [92601] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2177), 1, sym_comment, - ACTIONS(6239), 11, + ACTIONS(6384), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141916,8 +142317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6237), 30, + ACTIONS(6382), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141948,12 +142348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [92653] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2178), 1, sym_comment, - ACTIONS(6243), 11, + ACTIONS(6388), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141964,8 +142365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6241), 30, + ACTIONS(6386), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141996,12 +142396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [92705] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2179), 1, sym_comment, - ACTIONS(6211), 11, + ACTIONS(6356), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142012,8 +142413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6209), 30, + ACTIONS(6354), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142044,12 +142444,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [92757] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2180), 1, sym_comment, - ACTIONS(6191), 11, + ACTIONS(6336), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142060,8 +142461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6189), 30, + ACTIONS(6334), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142092,12 +142492,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [92809] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2181), 1, sym_comment, - ACTIONS(6247), 11, + ACTIONS(6392), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142108,8 +142509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6245), 30, + ACTIONS(6390), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142140,12 +142540,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [92861] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2182), 1, sym_comment, - ACTIONS(6251), 11, + ACTIONS(6396), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142156,8 +142557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6249), 30, + ACTIONS(6394), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142188,12 +142588,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [92913] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2183), 1, sym_comment, - ACTIONS(6255), 11, + ACTIONS(6400), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142204,8 +142605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6253), 30, + ACTIONS(6398), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142236,12 +142636,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [92965] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2184), 1, sym_comment, - ACTIONS(6187), 11, + ACTIONS(6332), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142252,8 +142653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6185), 30, + ACTIONS(6330), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142284,12 +142684,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [93017] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2185), 1, sym_comment, - ACTIONS(6179), 11, + ACTIONS(6324), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142300,8 +142701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6177), 30, + ACTIONS(6322), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142332,12 +142732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [93069] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2186), 1, sym_comment, - ACTIONS(6171), 11, + ACTIONS(6316), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142348,8 +142749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6169), 30, + ACTIONS(6314), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142380,12 +142780,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [93121] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2187), 1, sym_comment, - ACTIONS(6319), 11, + ACTIONS(6464), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142396,8 +142797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6317), 30, + ACTIONS(6462), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142428,12 +142828,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [93173] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2188), 1, sym_comment, - ACTIONS(6315), 11, + ACTIONS(6460), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142444,8 +142845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6313), 30, + ACTIONS(6458), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142476,12 +142876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [93225] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2189), 1, sym_comment, - ACTIONS(6311), 11, + ACTIONS(6456), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142492,8 +142893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6309), 30, + ACTIONS(6454), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142524,12 +142924,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [93277] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2190), 1, sym_comment, - ACTIONS(6135), 11, + ACTIONS(6280), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142540,8 +142941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6133), 30, + ACTIONS(6278), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142572,12 +142972,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [93329] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2191), 1, sym_comment, - ACTIONS(6307), 11, + ACTIONS(6452), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142588,8 +142989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6305), 30, + ACTIONS(6450), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142620,12 +143020,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [93381] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2192), 1, sym_comment, - ACTIONS(6259), 11, + ACTIONS(6404), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142636,8 +143037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6257), 30, + ACTIONS(6402), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142668,12 +143068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [93433] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2193), 1, sym_comment, - ACTIONS(6303), 11, + ACTIONS(6448), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142684,8 +143085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6301), 30, + ACTIONS(6446), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142716,12 +143116,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [93485] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2194), 1, sym_comment, - ACTIONS(6299), 11, + ACTIONS(6444), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142732,8 +143133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6297), 30, + ACTIONS(6442), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142764,12 +143164,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [93537] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2195), 1, sym_comment, - ACTIONS(6295), 11, + ACTIONS(6440), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142780,8 +143181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6293), 30, + ACTIONS(6438), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142812,12 +143212,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [93589] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2196), 1, sym_comment, - ACTIONS(6267), 11, + ACTIONS(6412), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142828,8 +143229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6265), 30, + ACTIONS(6410), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142860,12 +143260,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [93641] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2197), 1, sym_comment, - ACTIONS(6271), 11, + ACTIONS(6416), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142876,8 +143277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6269), 30, + ACTIONS(6414), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142908,12 +143308,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [93693] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2198), 1, sym_comment, - ACTIONS(6275), 11, + ACTIONS(6420), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142924,8 +143325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6273), 30, + ACTIONS(6418), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142956,12 +143356,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [93745] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2199), 1, sym_comment, - ACTIONS(6279), 11, + ACTIONS(6424), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142972,8 +143373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6277), 30, + ACTIONS(6422), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -143004,12 +143404,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [93797] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2200), 1, sym_comment, - ACTIONS(6287), 11, + ACTIONS(6432), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143020,8 +143421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6285), 30, + ACTIONS(6430), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -143052,12 +143452,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + aux_sym_text_token3, [93849] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2201), 1, sym_comment, - ACTIONS(6291), 11, + ACTIONS(6436), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143068,8 +143469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - ACTIONS(6289), 30, + ACTIONS(6434), 31, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -143100,13 +143500,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [93901] = 8, + aux_sym_text_token3, + [93901] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, - ACTIONS(6419), 1, + ACTIONS(6564), 1, anon_sym_ATendphp, + ACTIONS(6568), 1, + aux_sym_text_token3, STATE(1618), 1, sym__directive_parameter, STATE(2202), 1, @@ -143115,16 +143518,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [93928] = 8, + [93930] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6355), 1, + ACTIONS(6500), 1, anon_sym_LPAREN, - ACTIONS(6423), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6570), 1, anon_sym_ATendphp, STATE(1997), 1, sym__directive_parameter, @@ -143134,16 +143538,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [93955] = 8, + [93959] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6403), 1, + ACTIONS(6548), 1, anon_sym_LPAREN, - ACTIONS(6425), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6572), 1, anon_sym_ATendphp, STATE(2137), 1, sym__directive_parameter, @@ -143153,16 +143558,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [93982] = 8, + [93988] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6369), 1, + ACTIONS(6514), 1, anon_sym_LPAREN, - ACTIONS(6427), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6574), 1, anon_sym_ATendphp, STATE(1913), 1, sym__directive_parameter, @@ -143172,16 +143578,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94009] = 8, + [94017] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, - ACTIONS(6429), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6576), 1, anon_sym_ATendphp, STATE(1206), 1, sym__directive_parameter, @@ -143191,16 +143598,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94036] = 8, + [94046] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, - ACTIONS(6431), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6578), 1, anon_sym_ATendphp, STATE(2035), 1, sym__directive_parameter, @@ -143210,16 +143618,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94063] = 8, + [94075] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, - ACTIONS(6433), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6580), 1, anon_sym_ATendphp, STATE(758), 1, sym__directive_parameter, @@ -143229,16 +143638,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94090] = 8, + [94104] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, - ACTIONS(6435), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6582), 1, anon_sym_ATendphp, STATE(1263), 1, sym__directive_parameter, @@ -143248,16 +143658,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94117] = 8, + [94133] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6377), 1, + ACTIONS(6522), 1, anon_sym_LPAREN, - ACTIONS(6437), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6584), 1, anon_sym_ATendphp, STATE(1854), 1, sym__directive_parameter, @@ -143267,16 +143678,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94144] = 8, + [94162] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, - ACTIONS(6439), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6586), 1, anon_sym_ATendphp, STATE(1149), 1, sym__directive_parameter, @@ -143286,16 +143698,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94171] = 8, + [94191] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, - ACTIONS(6441), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6588), 1, anon_sym_ATendphp, STATE(1321), 1, sym__directive_parameter, @@ -143305,16 +143718,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94198] = 8, + [94220] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6405), 1, + ACTIONS(6550), 1, anon_sym_LPAREN, - ACTIONS(6443), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6590), 1, anon_sym_ATendphp, STATE(2146), 1, sym__directive_parameter, @@ -143324,16 +143738,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94225] = 8, + [94249] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, - ACTIONS(6445), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6592), 1, anon_sym_ATendphp, STATE(1795), 1, sym__directive_parameter, @@ -143343,16 +143758,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94252] = 8, + [94278] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, - ACTIONS(6447), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6594), 1, anon_sym_ATendphp, STATE(1016), 1, sym__directive_parameter, @@ -143362,16 +143778,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94279] = 8, + [94307] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, - ACTIONS(6449), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6596), 1, anon_sym_ATendphp, STATE(688), 1, sym__directive_parameter, @@ -143381,16 +143798,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94306] = 8, + [94336] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, - ACTIONS(6451), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6598), 1, anon_sym_ATendphp, STATE(1736), 1, sym__directive_parameter, @@ -143400,16 +143818,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94333] = 8, + [94365] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6125), 1, + ACTIONS(6270), 1, anon_sym_LPAREN, - ACTIONS(6453), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6600), 1, anon_sym_ATendphp, STATE(879), 1, sym__directive_parameter, @@ -143419,16 +143838,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94360] = 8, + [94394] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6602), 1, anon_sym_ATendphp, STATE(1079), 1, sym__directive_parameter, @@ -143438,16 +143858,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94387] = 8, + [94423] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, - ACTIONS(6457), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6604), 1, anon_sym_ATendphp, STATE(1378), 1, sym__directive_parameter, @@ -143457,16 +143878,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94414] = 8, + [94452] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, - ACTIONS(6459), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6606), 1, anon_sym_ATendphp, STATE(1559), 1, sym__directive_parameter, @@ -143476,16 +143898,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94441] = 8, + [94481] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, - ACTIONS(6461), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6608), 1, anon_sym_ATendphp, STATE(1677), 1, sym__directive_parameter, @@ -143495,16 +143918,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94468] = 8, + [94510] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6123), 1, + ACTIONS(6268), 1, anon_sym_LPAREN, - ACTIONS(6463), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6610), 1, anon_sym_ATendphp, STATE(586), 1, sym__directive_parameter, @@ -143514,16 +143938,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94495] = 8, + [94539] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, - ACTIONS(6465), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6612), 1, anon_sym_ATendphp, STATE(1485), 1, sym__directive_parameter, @@ -143533,16 +143958,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94522] = 8, + [94568] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6614), 1, anon_sym_ATendphp, STATE(1441), 1, sym__directive_parameter, @@ -143552,16 +143978,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94549] = 8, + [94597] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, - ACTIONS(6469), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6616), 1, anon_sym_ATendphp, STATE(825), 1, sym__directive_parameter, @@ -143571,16 +143998,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94576] = 8, + [94626] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, - ACTIONS(6471), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6618), 1, anon_sym_ATendphp, STATE(959), 1, sym__directive_parameter, @@ -143590,16 +144018,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94603] = 8, + [94655] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6117), 1, + ACTIONS(6262), 1, anon_sym_LPAREN, - ACTIONS(6473), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6620), 1, anon_sym_ATendphp, STATE(485), 1, sym__directive_parameter, @@ -143609,16 +144038,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94630] = 8, + [94684] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, - ACTIONS(6475), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6622), 1, anon_sym_ATendphp, STATE(892), 1, sym__directive_parameter, @@ -143628,16 +144058,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94657] = 8, + [94713] = 9, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, - ACTIONS(6477), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6624), 1, anon_sym_ATendphp, STATE(1500), 1, sym__directive_parameter, @@ -143647,44 +144078,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94684] = 6, + [94742] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6479), 1, + ACTIONS(6626), 1, anon_sym_BANG_BANG_RBRACE, + ACTIONS(6630), 1, + aux_sym_text_token2, STATE(2231), 1, sym_comment, STATE(2260), 1, aux_sym__escaped_repeat1, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [94705] = 6, + [94765] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6483), 1, + ACTIONS(6632), 1, anon_sym_RBRACE_RBRACE, + ACTIONS(6636), 1, + aux_sym_text_token2, STATE(2232), 1, sym_comment, STATE(2313), 1, aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [94726] = 6, + [94788] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6487), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6638), 1, anon_sym_RBRACE_RBRACE, STATE(2233), 1, sym_comment, @@ -143692,14 +144126,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [94747] = 6, + [94811] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6489), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6640), 1, anon_sym_RBRACE_RBRACE, STATE(2234), 1, sym_comment, @@ -143707,14 +144142,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [94768] = 6, + [94834] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6491), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6642), 1, anon_sym_BANG_BANG_RBRACE, STATE(2235), 1, sym_comment, @@ -143722,14 +144158,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [94789] = 6, + [94857] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6493), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6644), 1, anon_sym_BANG_BANG_RBRACE, STATE(2236), 1, sym_comment, @@ -143737,14 +144174,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [94810] = 6, + [94880] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6495), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6646), 1, anon_sym_RBRACE_RBRACE, STATE(2234), 1, aux_sym__escaped_repeat1, @@ -143752,14 +144190,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [94831] = 6, + [94903] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6497), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6648), 1, anon_sym_ATendphp, STATE(2238), 1, sym_comment, @@ -143767,14 +144206,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94852] = 6, + [94926] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6499), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6650), 1, anon_sym_RBRACE_RBRACE, STATE(2239), 1, sym_comment, @@ -143782,14 +144222,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [94873] = 6, + [94949] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6501), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6652), 1, anon_sym_BANG_BANG_RBRACE, STATE(2240), 1, sym_comment, @@ -143797,28 +144238,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [94894] = 5, + [94972] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6503), 1, + ACTIONS(6654), 1, anon_sym_BANG_BANG_RBRACE, + ACTIONS(6659), 1, + aux_sym_text_token2, STATE(2512), 1, sym_text, + ACTIONS(6656), 2, + aux_sym_text_token1, + aux_sym_text_token3, STATE(2241), 2, sym_comment, aux_sym__escaped_repeat1, - ACTIONS(6505), 3, - aux_sym_text_token1, - aux_sym_text_token2, - aux_sym_text_token3, - [94913] = 6, + [94993] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6508), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6662), 1, anon_sym_RBRACE_RBRACE, STATE(2242), 1, sym_comment, @@ -143826,14 +144269,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [94934] = 6, + [95016] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6510), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6664), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -143841,14 +144285,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [94955] = 6, + [95039] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6512), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6666), 1, anon_sym_ATendphp, STATE(2244), 1, sym_comment, @@ -143856,14 +144301,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94976] = 6, + [95062] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6514), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6668), 1, anon_sym_ATendphp, STATE(2245), 1, sym_comment, @@ -143871,14 +144317,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [94997] = 6, + [95085] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6670), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -143886,14 +144333,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95018] = 6, + [95108] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6518), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6672), 1, anon_sym_BANG_BANG_RBRACE, STATE(2240), 1, aux_sym__escaped_repeat1, @@ -143901,14 +144349,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95039] = 6, + [95131] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6520), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6674), 1, anon_sym_RBRACE_RBRACE, STATE(2242), 1, aux_sym__escaped_repeat1, @@ -143916,14 +144365,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95060] = 6, + [95154] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6522), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6676), 1, anon_sym_RBRACE_RBRACE, STATE(2249), 1, sym_comment, @@ -143931,14 +144381,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95081] = 6, + [95177] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6678), 1, anon_sym_RBRACE_RBRACE, STATE(2250), 1, sym_comment, @@ -143946,14 +144397,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95102] = 6, + [95200] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6680), 1, anon_sym_BANG_BANG_RBRACE, STATE(2251), 1, sym_comment, @@ -143961,14 +144413,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95123] = 6, + [95223] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6682), 1, anon_sym_RBRACE_RBRACE, STATE(2252), 1, sym_comment, @@ -143976,14 +144429,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95144] = 6, + [95246] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6684), 1, anon_sym_RBRACE_RBRACE, STATE(2253), 1, sym_comment, @@ -143991,28 +144445,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95165] = 5, + [95269] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6503), 1, + ACTIONS(6654), 1, anon_sym_ATendphp, + ACTIONS(6689), 1, + aux_sym_text_token3, STATE(2515), 1, sym_text, + ACTIONS(6686), 2, + aux_sym_text_token1, + aux_sym_text_token2, STATE(2254), 2, sym_comment, aux_sym__escaped_repeat1, - ACTIONS(6532), 3, - aux_sym_text_token1, - aux_sym_text_token2, - aux_sym_text_token3, - [95184] = 6, + [95290] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6535), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6692), 1, anon_sym_RBRACE_RBRACE, STATE(2255), 1, sym_comment, @@ -144020,14 +144476,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95205] = 6, + [95313] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6537), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6694), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -144035,14 +144492,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95226] = 6, + [95336] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6539), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6696), 1, anon_sym_RBRACE_RBRACE, STATE(2257), 1, sym_comment, @@ -144050,14 +144508,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95247] = 6, + [95359] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6541), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6698), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -144065,14 +144524,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [95268] = 6, + [95382] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6543), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6700), 1, anon_sym_BANG_BANG_RBRACE, STATE(2246), 1, aux_sym__escaped_repeat1, @@ -144080,14 +144540,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95289] = 6, + [95405] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6545), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6702), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -144095,14 +144556,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95310] = 6, + [95428] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6547), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6704), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -144110,14 +144572,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [95331] = 6, + [95451] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6549), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6706), 1, anon_sym_RBRACE_RBRACE, STATE(2252), 1, aux_sym__escaped_repeat1, @@ -144125,14 +144588,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95352] = 6, + [95474] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6551), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6708), 1, anon_sym_RBRACE_RBRACE, STATE(2263), 1, sym_comment, @@ -144140,14 +144604,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95373] = 6, + [95497] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6553), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6710), 1, anon_sym_BANG_BANG_RBRACE, STATE(2264), 1, sym_comment, @@ -144155,14 +144620,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95394] = 6, + [95520] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6555), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6712), 1, anon_sym_RBRACE_RBRACE, STATE(2265), 1, sym_comment, @@ -144170,14 +144636,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95415] = 6, + [95543] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6557), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6714), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -144185,14 +144652,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [95436] = 6, + [95566] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6559), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6716), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -144200,14 +144668,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95457] = 6, + [95589] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6561), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6718), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -144215,14 +144684,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95478] = 6, + [95612] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6563), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6720), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -144230,14 +144700,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [95499] = 6, + [95635] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6565), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6722), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -144245,14 +144716,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95520] = 6, + [95658] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6567), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6724), 1, anon_sym_RBRACE_RBRACE, STATE(2271), 1, sym_comment, @@ -144260,14 +144732,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95541] = 6, + [95681] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6569), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6726), 1, anon_sym_RBRACE_RBRACE, STATE(2272), 1, sym_comment, @@ -144275,14 +144748,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95562] = 6, + [95704] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6571), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6728), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -144290,14 +144764,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [95583] = 6, + [95727] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6573), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6730), 1, anon_sym_BANG_BANG_RBRACE, STATE(2270), 1, aux_sym__escaped_repeat1, @@ -144305,14 +144780,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95604] = 6, + [95750] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6575), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6732), 1, anon_sym_RBRACE_RBRACE, STATE(2271), 1, aux_sym__escaped_repeat1, @@ -144320,14 +144796,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95625] = 6, + [95773] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6577), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6734), 1, anon_sym_BANG_BANG_RBRACE, STATE(2268), 1, aux_sym__escaped_repeat1, @@ -144335,14 +144812,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95646] = 6, + [95796] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6579), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6736), 1, anon_sym_RBRACE_RBRACE, STATE(2272), 1, aux_sym__escaped_repeat1, @@ -144350,14 +144828,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95667] = 6, + [95819] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6581), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6738), 1, anon_sym_RBRACE_RBRACE, STATE(2278), 1, sym_comment, @@ -144365,14 +144844,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95688] = 6, + [95842] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6583), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6740), 1, anon_sym_BANG_BANG_RBRACE, STATE(2279), 1, sym_comment, @@ -144380,14 +144860,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95709] = 6, + [95865] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6585), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6742), 1, anon_sym_RBRACE_RBRACE, STATE(2280), 1, sym_comment, @@ -144395,14 +144876,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95730] = 6, + [95888] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6587), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6744), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -144410,14 +144892,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95751] = 6, + [95911] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6589), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6746), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -144425,14 +144908,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [95772] = 6, + [95934] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6591), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6748), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -144440,14 +144924,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95793] = 6, + [95957] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6593), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6750), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -144455,14 +144940,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [95814] = 6, + [95980] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6595), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6752), 1, anon_sym_RBRACE_RBRACE, STATE(2285), 1, sym_comment, @@ -144470,14 +144956,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95835] = 6, + [96003] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6597), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6754), 1, anon_sym_RBRACE_RBRACE, STATE(2286), 1, sym_comment, @@ -144485,14 +144972,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95856] = 6, + [96026] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6599), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6756), 1, anon_sym_BANG_BANG_RBRACE, STATE(2287), 1, sym_comment, @@ -144500,14 +144988,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95877] = 6, + [96049] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6601), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6758), 1, anon_sym_RBRACE_RBRACE, STATE(2288), 1, sym_comment, @@ -144515,14 +145004,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95898] = 6, + [96072] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6603), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6760), 1, anon_sym_BANG_BANG_RBRACE, STATE(2289), 1, sym_comment, @@ -144530,14 +145020,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95919] = 6, + [96095] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6605), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6762), 1, anon_sym_RBRACE_RBRACE, STATE(2290), 1, sym_comment, @@ -144545,14 +145036,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95940] = 6, + [96118] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6607), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6764), 1, anon_sym_RBRACE_RBRACE, STATE(2291), 1, sym_comment, @@ -144560,14 +145052,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [95961] = 6, + [96141] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6609), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6766), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -144575,14 +145068,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [95982] = 6, + [96164] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6611), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6768), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -144590,14 +145084,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96003] = 6, + [96187] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6613), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6770), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -144605,14 +145100,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96024] = 6, + [96210] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6615), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6772), 1, anon_sym_RBRACE_RBRACE, STATE(2295), 1, sym_comment, @@ -144620,14 +145116,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96045] = 6, + [96233] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6617), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6774), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -144635,14 +145132,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96066] = 6, + [96256] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6619), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6776), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -144650,14 +145148,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [96087] = 6, + [96279] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6621), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6778), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -144665,14 +145164,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [96108] = 6, + [96302] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6623), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6780), 1, anon_sym_BANG_BANG_RBRACE, STATE(2283), 1, aux_sym__escaped_repeat1, @@ -144680,14 +145180,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96129] = 6, + [96325] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6625), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6782), 1, anon_sym_RBRACE_RBRACE, STATE(2285), 1, aux_sym__escaped_repeat1, @@ -144695,14 +145196,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96150] = 6, + [96348] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6627), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6784), 1, anon_sym_RBRACE_RBRACE, STATE(2301), 1, sym_comment, @@ -144710,14 +145212,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96171] = 6, + [96371] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6629), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6786), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -144725,14 +145228,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [96192] = 6, + [96394] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6631), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6788), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -144740,14 +145244,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [96213] = 6, + [96417] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6633), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6790), 1, anon_sym_BANG_BANG_RBRACE, STATE(2294), 1, aux_sym__escaped_repeat1, @@ -144755,14 +145260,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96234] = 6, + [96440] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6635), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6792), 1, anon_sym_RBRACE_RBRACE, STATE(2301), 1, aux_sym__escaped_repeat1, @@ -144770,14 +145276,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96255] = 6, + [96463] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6637), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6794), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -144785,14 +145292,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96276] = 6, + [96486] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6639), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6796), 1, anon_sym_BANG_BANG_RBRACE, STATE(2307), 1, sym_comment, @@ -144800,29 +145308,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96297] = 6, + [96509] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6641), 1, + ACTIONS(6798), 1, anon_sym_DASH_DASH_RBRACE_RBRACE, + ACTIONS(6802), 1, + aux_sym_text_token2, STATE(2308), 1, sym_comment, STATE(2357), 1, aux_sym_comment_repeat1, STATE(2509), 1, sym_text, - ACTIONS(6643), 3, + ACTIONS(6800), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96318] = 6, + [96532] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6645), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6804), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -144830,14 +145340,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96339] = 6, + [96555] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6647), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6806), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -144845,14 +145356,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [96360] = 6, + [96578] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6649), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6808), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -144860,14 +145372,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96381] = 6, + [96601] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6651), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6810), 1, anon_sym_RBRACE_RBRACE, STATE(2312), 1, sym_comment, @@ -144875,14 +145388,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96402] = 6, + [96624] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6653), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6812), 1, anon_sym_RBRACE_RBRACE, STATE(2313), 1, sym_comment, @@ -144890,14 +145404,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96423] = 6, + [96647] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6655), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6814), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -144905,14 +145420,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96444] = 6, + [96670] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6657), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6816), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -144920,14 +145436,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [96465] = 6, + [96693] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6659), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6818), 1, anon_sym_RBRACE_RBRACE, STATE(2316), 1, sym_comment, @@ -144935,14 +145452,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96486] = 6, + [96716] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6661), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6820), 1, anon_sym_BANG_BANG_RBRACE, STATE(2311), 1, aux_sym__escaped_repeat1, @@ -144950,14 +145468,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96507] = 6, + [96739] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6663), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6822), 1, anon_sym_RBRACE_RBRACE, STATE(2312), 1, aux_sym__escaped_repeat1, @@ -144965,14 +145484,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96528] = 6, + [96762] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6665), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6824), 1, anon_sym_RBRACE_RBRACE, STATE(2319), 1, sym_comment, @@ -144980,14 +145500,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96549] = 6, + [96785] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6667), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6826), 1, anon_sym_BANG_BANG_RBRACE, STATE(2320), 1, sym_comment, @@ -144995,14 +145516,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96570] = 6, + [96808] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6669), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6828), 1, anon_sym_BANG_BANG_RBRACE, STATE(2309), 1, aux_sym__escaped_repeat1, @@ -145010,14 +145532,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96591] = 6, + [96831] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6671), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6830), 1, anon_sym_RBRACE_RBRACE, STATE(2322), 1, sym_comment, @@ -145025,14 +145548,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96612] = 6, + [96854] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6673), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6832), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -145040,14 +145564,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96633] = 6, + [96877] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6675), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6834), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -145055,14 +145580,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [96654] = 6, + [96900] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6677), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6836), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -145070,14 +145596,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [96675] = 6, + [96923] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6679), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6838), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -145085,14 +145612,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [96696] = 6, + [96946] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6681), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6840), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -145100,14 +145628,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96717] = 6, + [96969] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6683), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6842), 1, anon_sym_RBRACE_RBRACE, STATE(2328), 1, sym_comment, @@ -145115,14 +145644,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96738] = 6, + [96992] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6685), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6844), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -145130,28 +145660,30 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96759] = 5, + [97015] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6503), 1, + ACTIONS(6654), 1, anon_sym_RBRACE_RBRACE, + ACTIONS(6849), 1, + aux_sym_text_token2, STATE(2510), 1, sym_text, + ACTIONS(6846), 2, + aux_sym_text_token1, + aux_sym_text_token3, STATE(2330), 2, sym_comment, aux_sym__escaped_repeat1, - ACTIONS(6687), 3, - aux_sym_text_token1, - aux_sym_text_token2, - aux_sym_text_token3, - [96778] = 6, + [97036] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6690), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6852), 1, anon_sym_RBRACE_RBRACE, STATE(2330), 1, aux_sym__escaped_repeat1, @@ -145159,28 +145691,30 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96799] = 5, + [97059] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6692), 1, + ACTIONS(6854), 1, anon_sym_DASH_DASH_RBRACE_RBRACE, + ACTIONS(6859), 1, + aux_sym_text_token2, STATE(2509), 1, sym_text, + ACTIONS(6856), 2, + aux_sym_text_token1, + aux_sym_text_token3, STATE(2332), 2, sym_comment, aux_sym_comment_repeat1, - ACTIONS(6694), 3, - aux_sym_text_token1, - aux_sym_text_token2, - aux_sym_text_token3, - [96818] = 6, + [97080] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6697), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6862), 1, anon_sym_RBRACE_RBRACE, STATE(2316), 1, aux_sym__escaped_repeat1, @@ -145188,14 +145722,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96839] = 6, + [97103] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6699), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6864), 1, anon_sym_RBRACE_RBRACE, STATE(2334), 1, sym_comment, @@ -145203,14 +145738,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96860] = 6, + [97126] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6701), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6866), 1, anon_sym_BANG_BANG_RBRACE, STATE(2335), 1, sym_comment, @@ -145218,14 +145754,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96881] = 6, + [97149] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6703), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6868), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -145233,14 +145770,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [96902] = 6, + [97172] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6705), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6870), 1, anon_sym_BANG_BANG_RBRACE, STATE(2329), 1, aux_sym__escaped_repeat1, @@ -145248,14 +145786,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96923] = 6, + [97195] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6707), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6872), 1, anon_sym_RBRACE_RBRACE, STATE(2253), 1, aux_sym__escaped_repeat1, @@ -145263,14 +145802,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96944] = 6, + [97218] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6709), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6874), 1, anon_sym_RBRACE_RBRACE, STATE(2331), 1, aux_sym__escaped_repeat1, @@ -145278,14 +145818,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96965] = 6, + [97241] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6711), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6876), 1, anon_sym_RBRACE_RBRACE, STATE(2340), 1, sym_comment, @@ -145293,14 +145834,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [96986] = 6, + [97264] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6713), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6878), 1, anon_sym_RBRACE_RBRACE, STATE(2330), 1, aux_sym__escaped_repeat1, @@ -145308,14 +145850,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97007] = 6, + [97287] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6715), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6880), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -145323,14 +145866,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97028] = 6, + [97310] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6717), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6882), 1, anon_sym_BANG_BANG_RBRACE, STATE(2327), 1, aux_sym__escaped_repeat1, @@ -145338,14 +145882,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97049] = 6, + [97333] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6719), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6884), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -145353,14 +145898,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [97070] = 6, + [97356] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6721), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6886), 1, anon_sym_RBRACE_RBRACE, STATE(2328), 1, aux_sym__escaped_repeat1, @@ -145368,14 +145914,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97091] = 6, + [97379] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6723), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6888), 1, anon_sym_BANG_BANG_RBRACE, STATE(2346), 1, sym_comment, @@ -145383,14 +145930,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97112] = 6, + [97402] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6725), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6890), 1, anon_sym_BANG_BANG_RBRACE, STATE(2347), 1, sym_comment, @@ -145398,14 +145946,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97133] = 6, + [97425] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6727), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6892), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -145413,14 +145962,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [97154] = 6, + [97448] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6729), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6894), 1, anon_sym_RBRACE_RBRACE, STATE(2330), 1, aux_sym__escaped_repeat1, @@ -145428,14 +145978,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97175] = 6, + [97471] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6731), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6896), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -145443,14 +145994,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97196] = 6, + [97494] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6733), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6898), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -145458,14 +146010,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97217] = 6, + [97517] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6735), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6900), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -145473,14 +146026,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [97238] = 6, + [97540] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6737), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6902), 1, anon_sym_RBRACE_RBRACE, STATE(2330), 1, aux_sym__escaped_repeat1, @@ -145488,14 +146042,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97259] = 6, + [97563] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6739), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6904), 1, anon_sym_RBRACE_RBRACE, STATE(2290), 1, aux_sym__escaped_repeat1, @@ -145503,14 +146058,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97280] = 6, + [97586] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6741), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6906), 1, anon_sym_BANG_BANG_RBRACE, STATE(2355), 1, sym_comment, @@ -145518,14 +146074,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97301] = 6, + [97609] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6743), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6908), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -145533,14 +146090,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97322] = 6, + [97632] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6745), 1, + ACTIONS(6802), 1, + aux_sym_text_token2, + ACTIONS(6910), 1, anon_sym_DASH_DASH_RBRACE_RBRACE, STATE(2332), 1, aux_sym_comment_repeat1, @@ -145548,14 +146106,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2509), 1, sym_text, - ACTIONS(6643), 3, + ACTIONS(6800), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97343] = 6, + [97655] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6747), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6912), 1, anon_sym_RBRACE_RBRACE, STATE(2358), 1, sym_comment, @@ -145563,14 +146122,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97364] = 6, + [97678] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6749), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6914), 1, anon_sym_RBRACE_RBRACE, STATE(2330), 1, aux_sym__escaped_repeat1, @@ -145578,14 +146138,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97385] = 6, + [97701] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6751), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6916), 1, anon_sym_BANG_BANG_RBRACE, STATE(2360), 1, sym_comment, @@ -145593,14 +146154,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__escaped_repeat1, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97406] = 6, + [97724] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6753), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6918), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -145608,14 +146170,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97427] = 6, + [97747] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6755), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6920), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -145623,14 +146186,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [97448] = 6, + [97770] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6757), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6922), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -145638,14 +146202,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [97469] = 6, + [97793] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6759), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6924), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -145653,14 +146218,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [97490] = 6, + [97816] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6761), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6926), 1, anon_sym_RBRACE_RBRACE, STATE(2330), 1, aux_sym__escaped_repeat1, @@ -145668,14 +146234,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97511] = 6, + [97839] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6763), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6928), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -145683,14 +146250,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97532] = 6, + [97862] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6765), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6930), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -145698,14 +146266,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [97553] = 6, + [97885] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6767), 1, + ACTIONS(6568), 1, + aux_sym_text_token3, + ACTIONS(6932), 1, anon_sym_ATendphp, STATE(2254), 1, aux_sym__escaped_repeat1, @@ -145713,14 +146282,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2515), 1, sym_text, - ACTIONS(6421), 3, + ACTIONS(6566), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [97574] = 6, + [97908] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6769), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6934), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -145728,14 +146298,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97595] = 6, + [97931] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6771), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6936), 1, anon_sym_RBRACE_RBRACE, STATE(2330), 1, aux_sym__escaped_repeat1, @@ -145743,14 +146314,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97616] = 6, + [97954] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6773), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6938), 1, anon_sym_RBRACE_RBRACE, STATE(2330), 1, aux_sym__escaped_repeat1, @@ -145758,14 +146330,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97637] = 6, + [97977] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6775), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6940), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -145773,14 +146346,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97658] = 6, + [98000] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6777), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6942), 1, anon_sym_BANG_BANG_RBRACE, STATE(2369), 1, aux_sym__escaped_repeat1, @@ -145788,14 +146362,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97679] = 6, + [98023] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6779), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6944), 1, anon_sym_RBRACE_RBRACE, STATE(2370), 1, aux_sym__escaped_repeat1, @@ -145803,14 +146378,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97700] = 6, + [98046] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6781), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6946), 1, anon_sym_BANG_BANG_RBRACE, STATE(2241), 1, aux_sym__escaped_repeat1, @@ -145818,14 +146394,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97721] = 6, + [98069] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6783), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6948), 1, anon_sym_BANG_BANG_RBRACE, STATE(2356), 1, aux_sym__escaped_repeat1, @@ -145833,14 +146410,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97742] = 6, + [98092] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6785), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6950), 1, anon_sym_BANG_BANG_RBRACE, STATE(2351), 1, aux_sym__escaped_repeat1, @@ -145848,14 +146426,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97763] = 6, + [98115] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6787), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6952), 1, anon_sym_RBRACE_RBRACE, STATE(2353), 1, aux_sym__escaped_repeat1, @@ -145863,14 +146442,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97784] = 6, + [98138] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6789), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6954), 1, anon_sym_RBRACE_RBRACE, STATE(2371), 1, aux_sym__escaped_repeat1, @@ -145878,14 +146458,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97805] = 6, + [98161] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6791), 1, + ACTIONS(6636), 1, + aux_sym_text_token2, + ACTIONS(6956), 1, anon_sym_RBRACE_RBRACE, STATE(2359), 1, aux_sym__escaped_repeat1, @@ -145893,14 +146474,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2510), 1, sym_text, - ACTIONS(6485), 3, + ACTIONS(6634), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97826] = 6, + [98184] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6793), 1, + ACTIONS(6630), 1, + aux_sym_text_token2, + ACTIONS(6958), 1, anon_sym_BANG_BANG_RBRACE, STATE(2361), 1, aux_sym__escaped_repeat1, @@ -145908,16 +146490,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2512), 1, sym_text, - ACTIONS(6481), 3, + ACTIONS(6628), 2, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [97847] = 7, - ACTIONS(6795), 1, + [98207] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6797), 1, + ACTIONS(6962), 1, anon_sym_RPAREN, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, STATE(2382), 1, sym_comment, @@ -145927,12 +146508,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [97869] = 7, - ACTIONS(6795), 1, + [98229] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6801), 1, + ACTIONS(6966), 1, anon_sym_RPAREN, STATE(2383), 1, sym_comment, @@ -145942,12 +146523,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [97891] = 7, - ACTIONS(6795), 1, + [98251] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6803), 1, + ACTIONS(6968), 1, anon_sym_RPAREN, STATE(2384), 1, sym_comment, @@ -145957,12 +146538,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [97913] = 7, - ACTIONS(6795), 1, + [98273] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6805), 1, + ACTIONS(6970), 1, anon_sym_RPAREN, STATE(2384), 1, aux_sym__directive_parameter_repeat1, @@ -145972,12 +146553,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [97935] = 7, - ACTIONS(6795), 1, + [98295] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6807), 1, + ACTIONS(6972), 1, anon_sym_RPAREN, STATE(2386), 1, sym_comment, @@ -145987,12 +146568,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [97957] = 7, - ACTIONS(6795), 1, + [98317] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6809), 1, + ACTIONS(6974), 1, anon_sym_RPAREN, STATE(2386), 1, aux_sym__directive_parameter_repeat1, @@ -146002,14 +146583,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [97979] = 7, + [98339] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(5855), 1, + ACTIONS(5995), 1, anon_sym_ATendswitch, - ACTIONS(6811), 1, + ACTIONS(6976), 1, anon_sym_ATdefault, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, STATE(2388), 1, sym_comment, @@ -146017,12 +146598,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_switch_repeat1, STATE(3011), 1, sym__case, - [98001] = 7, - ACTIONS(6795), 1, + [98361] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6815), 1, + ACTIONS(6980), 1, anon_sym_RPAREN, STATE(2389), 1, sym_comment, @@ -146032,14 +146613,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [98023] = 7, + [98383] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6817), 1, + ACTIONS(6982), 1, anon_sym_ATdefault, - ACTIONS(6819), 1, + ACTIONS(6984), 1, anon_sym_ATendswitch, STATE(2390), 1, sym_comment, @@ -146047,12 +146628,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_switch_repeat1, STATE(3011), 1, sym__case, - [98045] = 7, - ACTIONS(6795), 1, + [98405] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6821), 1, + ACTIONS(6986), 1, anon_sym_RPAREN, STATE(2391), 1, sym_comment, @@ -146062,14 +146643,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [98067] = 7, + [98427] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6823), 1, + ACTIONS(6988), 1, anon_sym_ATdefault, - ACTIONS(6825), 1, + ACTIONS(6990), 1, anon_sym_ATendswitch, STATE(2388), 1, aux_sym_switch_repeat1, @@ -146077,12 +146658,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [98089] = 7, - ACTIONS(6795), 1, + [98449] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6827), 1, + ACTIONS(6992), 1, anon_sym_RPAREN, STATE(2391), 1, aux_sym__directive_parameter_repeat1, @@ -146092,14 +146673,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [98111] = 7, + [98471] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(5961), 1, + ACTIONS(6103), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6829), 1, + ACTIONS(6994), 1, anon_sym_ATdefault, STATE(2394), 1, sym_comment, @@ -146107,12 +146688,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_switch_repeat1, STATE(3011), 1, sym__case, - [98133] = 7, - ACTIONS(6795), 1, + [98493] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6831), 1, + ACTIONS(6996), 1, anon_sym_RPAREN, STATE(2395), 1, sym_comment, @@ -146122,14 +146703,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [98155] = 7, + [98515] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6833), 1, + ACTIONS(6998), 1, anon_sym_ATdefault, - ACTIONS(6835), 1, + ACTIONS(7000), 1, anon_sym_ATendswitch, STATE(2396), 1, sym_comment, @@ -146137,12 +146718,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_switch_repeat1, STATE(3011), 1, sym__case, - [98177] = 7, - ACTIONS(6795), 1, + [98537] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6837), 1, + ACTIONS(7002), 1, anon_sym_RPAREN, STATE(2397), 1, sym_comment, @@ -146152,14 +146733,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [98199] = 7, + [98559] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6839), 1, + ACTIONS(7004), 1, anon_sym_ATdefault, - ACTIONS(6841), 1, + ACTIONS(7006), 1, anon_sym_ATendswitch, STATE(2394), 1, aux_sym_switch_repeat1, @@ -146167,12 +146748,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [98221] = 7, - ACTIONS(6795), 1, + [98581] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6843), 1, + ACTIONS(7008), 1, anon_sym_RPAREN, STATE(2399), 1, sym_comment, @@ -146182,14 +146763,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [98243] = 7, + [98603] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(4353), 1, + ACTIONS(4455), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6845), 1, + ACTIONS(7010), 1, anon_sym_ATdefault, STATE(2400), 1, sym_comment, @@ -146197,12 +146778,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_switch_repeat1, STATE(3011), 1, sym__case, - [98265] = 6, - ACTIONS(6795), 1, + [98625] = 6, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6847), 1, + ACTIONS(7012), 1, aux_sym_parameter_token1, - ACTIONS(6850), 1, + ACTIONS(7015), 1, anon_sym_RPAREN2, STATE(3175), 1, sym__text_with_parenthesis, @@ -146211,14 +146792,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(2401), 2, sym_comment, aux_sym__directive_parameter_repeat1, - [98285] = 7, + [98645] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6852), 1, + ACTIONS(7017), 1, anon_sym_ATdefault, - ACTIONS(6854), 1, + ACTIONS(7019), 1, anon_sym_ATendswitch, STATE(2402), 1, sym_comment, @@ -146226,12 +146807,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_switch_repeat1, STATE(3011), 1, sym__case, - [98307] = 7, - ACTIONS(6795), 1, + [98667] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6856), 1, + ACTIONS(7021), 1, anon_sym_RPAREN, STATE(2403), 1, sym_comment, @@ -146241,12 +146822,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [98329] = 7, - ACTIONS(6795), 1, + [98689] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6858), 1, + ACTIONS(7023), 1, anon_sym_RPAREN, STATE(2395), 1, aux_sym__directive_parameter_repeat1, @@ -146256,12 +146837,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [98351] = 7, - ACTIONS(6795), 1, + [98711] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6860), 1, + ACTIONS(7025), 1, anon_sym_RPAREN, STATE(2405), 1, sym_comment, @@ -146271,14 +146852,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [98373] = 7, + [98733] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6099), 1, + ACTIONS(6244), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6862), 1, + ACTIONS(7027), 1, anon_sym_ATdefault, STATE(2406), 1, sym_comment, @@ -146286,12 +146867,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_switch_repeat1, STATE(3011), 1, sym__case, - [98395] = 7, - ACTIONS(6795), 1, + [98755] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6864), 1, + ACTIONS(7029), 1, aux_sym_parameter_token1, - ACTIONS(6866), 1, + ACTIONS(7031), 1, anon_sym_RPAREN2, STATE(2407), 1, sym_comment, @@ -146301,14 +146882,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3207), 1, sym_parameter, - [98417] = 7, + [98777] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6101), 1, + ACTIONS(6246), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6868), 1, + ACTIONS(7033), 1, anon_sym_ATdefault, STATE(2408), 1, sym_comment, @@ -146316,12 +146897,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_switch_repeat1, STATE(3011), 1, sym__case, - [98439] = 7, - ACTIONS(6795), 1, + [98799] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6864), 1, + ACTIONS(7029), 1, aux_sym_parameter_token1, - ACTIONS(6870), 1, + ACTIONS(7035), 1, anon_sym_RPAREN2, STATE(2401), 1, aux_sym__directive_parameter_repeat1, @@ -146331,12 +146912,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3207), 1, sym_parameter, - [98461] = 7, - ACTIONS(6795), 1, + [98821] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6872), 1, + ACTIONS(7037), 1, anon_sym_RPAREN, STATE(2410), 1, sym_comment, @@ -146346,14 +146927,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [98483] = 7, + [98843] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6874), 1, + ACTIONS(7039), 1, anon_sym_ATdefault, - ACTIONS(6876), 1, + ACTIONS(7041), 1, anon_sym_ATendswitch, STATE(2408), 1, aux_sym_switch_repeat1, @@ -146361,14 +146942,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [98505] = 7, + [98865] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6878), 1, + ACTIONS(7043), 1, anon_sym_ATdefault, - ACTIONS(6880), 1, + ACTIONS(7045), 1, anon_sym_ATendswitch, STATE(2412), 1, sym_comment, @@ -146376,14 +146957,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_switch_repeat1, STATE(3011), 1, sym__case, - [98527] = 7, + [98887] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3187), 1, + ACTIONS(3263), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6882), 1, + ACTIONS(7047), 1, anon_sym_ATdefault, STATE(2413), 1, sym_comment, @@ -146391,12 +146972,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_switch_repeat1, STATE(3011), 1, sym__case, - [98549] = 7, - ACTIONS(6795), 1, + [98909] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6884), 1, + ACTIONS(7049), 1, anon_sym_RPAREN, STATE(2414), 1, sym_comment, @@ -146406,12 +146987,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [98571] = 7, - ACTIONS(6795), 1, + [98931] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6886), 1, + ACTIONS(7051), 1, anon_sym_RPAREN, STATE(2415), 1, sym_comment, @@ -146421,12 +147002,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [98593] = 7, - ACTIONS(6795), 1, + [98953] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6888), 1, + ACTIONS(7053), 1, anon_sym_RPAREN, STATE(2410), 1, aux_sym__directive_parameter_repeat1, @@ -146436,14 +147017,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [98615] = 7, + [98975] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(5061), 1, + ACTIONS(5181), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6890), 1, + ACTIONS(7055), 1, anon_sym_ATdefault, STATE(2417), 1, sym_comment, @@ -146451,12 +147032,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_switch_repeat1, STATE(3011), 1, sym__case, - [98637] = 7, - ACTIONS(6795), 1, + [98997] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6892), 1, + ACTIONS(7057), 1, anon_sym_RPAREN, STATE(2418), 1, sym_comment, @@ -146466,14 +147047,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [98659] = 7, + [99019] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(2313), 1, + ACTIONS(2369), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6894), 1, + ACTIONS(7059), 1, anon_sym_ATdefault, STATE(2419), 1, sym_comment, @@ -146481,14 +147062,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_switch_repeat1, STATE(3011), 1, sym__case, - [98681] = 7, + [99041] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6896), 1, + ACTIONS(7061), 1, anon_sym_ATdefault, - ACTIONS(6898), 1, + ACTIONS(7063), 1, anon_sym_ATendswitch, STATE(2417), 1, aux_sym_switch_repeat1, @@ -146496,12 +147077,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [98703] = 7, - ACTIONS(6795), 1, + [99063] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6900), 1, + ACTIONS(7065), 1, anon_sym_RPAREN, STATE(2418), 1, aux_sym__directive_parameter_repeat1, @@ -146511,12 +147092,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [98725] = 7, - ACTIONS(6795), 1, + [99085] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6864), 1, + ACTIONS(7029), 1, aux_sym_parameter_token1, - ACTIONS(6902), 1, + ACTIONS(7067), 1, anon_sym_RPAREN2, STATE(2401), 1, aux_sym__directive_parameter_repeat1, @@ -146526,14 +147107,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3207), 1, sym_parameter, - [98747] = 7, + [99107] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6904), 1, + ACTIONS(7069), 1, anon_sym_ATdefault, - ACTIONS(6906), 1, + ACTIONS(7071), 1, anon_sym_ATendswitch, STATE(2423), 1, sym_comment, @@ -146541,14 +147122,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_switch_repeat1, STATE(3011), 1, sym__case, - [98769] = 7, + [99129] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6908), 1, + ACTIONS(7073), 1, anon_sym_ATdefault, - ACTIONS(6910), 1, + ACTIONS(7075), 1, anon_sym_ATendswitch, STATE(2424), 1, sym_comment, @@ -146556,27 +147137,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_switch_repeat1, STATE(3011), 1, sym__case, - [98791] = 5, + [99151] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6914), 1, + ACTIONS(7079), 1, anon_sym_ATcase, STATE(3011), 1, sym__case, - ACTIONS(6912), 2, + ACTIONS(7077), 2, anon_sym_ATdefault, anon_sym_ATendswitch, STATE(2425), 2, sym_comment, aux_sym_switch_repeat1, - [98809] = 7, + [99169] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3475), 1, + ACTIONS(3557), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6917), 1, + ACTIONS(7082), 1, anon_sym_ATdefault, STATE(2425), 1, aux_sym_switch_repeat1, @@ -146584,12 +147165,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [98831] = 7, - ACTIONS(6795), 1, + [99191] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6919), 1, + ACTIONS(7084), 1, anon_sym_RPAREN, STATE(2427), 1, sym_comment, @@ -146599,12 +147180,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [98853] = 7, - ACTIONS(6795), 1, + [99213] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6921), 1, + ACTIONS(7086), 1, anon_sym_RPAREN, STATE(2428), 1, sym_comment, @@ -146614,14 +147195,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [98875] = 7, + [99235] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6923), 1, + ACTIONS(7088), 1, anon_sym_ATdefault, - ACTIONS(6925), 1, + ACTIONS(7090), 1, anon_sym_ATendswitch, STATE(2426), 1, aux_sym_switch_repeat1, @@ -146629,14 +147210,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [98897] = 7, + [99257] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3663), 1, + ACTIONS(3749), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6927), 1, + ACTIONS(7092), 1, anon_sym_ATdefault, STATE(2425), 1, aux_sym_switch_repeat1, @@ -146644,12 +147225,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [98919] = 6, - ACTIONS(6795), 1, + [99279] = 6, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6850), 1, + ACTIONS(7015), 1, anon_sym_RPAREN, - ACTIONS(6929), 1, + ACTIONS(7094), 1, aux_sym_parameter_token1, STATE(3187), 1, sym__text_with_parenthesis, @@ -146658,12 +147239,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(2431), 2, sym_comment, aux_sym__directive_parameter_repeat1, - [98939] = 7, - ACTIONS(6795), 1, + [99299] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_RPAREN, STATE(2431), 1, aux_sym__directive_parameter_repeat1, @@ -146673,14 +147254,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [98961] = 7, + [99321] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(4939), 1, + ACTIONS(5056), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_ATdefault, STATE(2425), 1, aux_sym_switch_repeat1, @@ -146688,12 +147269,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [98983] = 7, - ACTIONS(6795), 1, + [99343] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6864), 1, + ACTIONS(7029), 1, aux_sym_parameter_token1, - ACTIONS(6936), 1, + ACTIONS(7101), 1, anon_sym_RPAREN2, STATE(2422), 1, aux_sym__directive_parameter_repeat1, @@ -146703,12 +147284,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3207), 1, sym_parameter, - [99005] = 7, - ACTIONS(6795), 1, + [99365] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6938), 1, + ACTIONS(7103), 1, anon_sym_RPAREN, STATE(2435), 1, sym_comment, @@ -146718,12 +147299,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [99027] = 7, - ACTIONS(6795), 1, + [99387] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6940), 1, + ACTIONS(7105), 1, anon_sym_RPAREN, STATE(2436), 1, sym_comment, @@ -146733,12 +147314,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [99049] = 7, - ACTIONS(6795), 1, + [99409] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6942), 1, + ACTIONS(7107), 1, anon_sym_RPAREN, STATE(2428), 1, aux_sym__directive_parameter_repeat1, @@ -146748,14 +147329,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [99071] = 7, + [99431] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3851), 1, + ACTIONS(3940), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6944), 1, + ACTIONS(7109), 1, anon_sym_ATdefault, STATE(2425), 1, aux_sym_switch_repeat1, @@ -146763,12 +147344,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [99093] = 7, - ACTIONS(6795), 1, + [99453] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6946), 1, + ACTIONS(7111), 1, anon_sym_RPAREN, STATE(2431), 1, aux_sym__directive_parameter_repeat1, @@ -146778,14 +147359,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [99115] = 7, + [99475] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(2429), 1, + ACTIONS(2487), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6948), 1, + ACTIONS(7113), 1, anon_sym_ATdefault, STATE(2425), 1, aux_sym_switch_repeat1, @@ -146793,14 +147374,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [99137] = 7, + [99497] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6950), 1, + ACTIONS(7115), 1, anon_sym_ATdefault, - ACTIONS(6952), 1, + ACTIONS(7117), 1, anon_sym_ATendswitch, STATE(2438), 1, aux_sym_switch_repeat1, @@ -146808,12 +147389,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [99159] = 7, - ACTIONS(6795), 1, + [99519] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6954), 1, + ACTIONS(7119), 1, anon_sym_RPAREN, STATE(2431), 1, aux_sym__directive_parameter_repeat1, @@ -146823,14 +147404,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [99181] = 7, + [99541] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6956), 1, + ACTIONS(7121), 1, anon_sym_ATdefault, - ACTIONS(6958), 1, + ACTIONS(7123), 1, anon_sym_ATendswitch, STATE(2443), 1, sym_comment, @@ -146838,14 +147419,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_switch_repeat1, STATE(3011), 1, sym__case, - [99203] = 7, + [99563] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3831), 1, + ACTIONS(3920), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6960), 1, + ACTIONS(7125), 1, anon_sym_ATdefault, STATE(2425), 1, aux_sym_switch_repeat1, @@ -146853,12 +147434,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [99225] = 7, - ACTIONS(6795), 1, + [99585] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6962), 1, + ACTIONS(7127), 1, anon_sym_RPAREN, STATE(2431), 1, aux_sym__directive_parameter_repeat1, @@ -146868,12 +147449,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [99247] = 7, - ACTIONS(6795), 1, + [99607] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, - aux_sym_parameter_token1, ACTIONS(6964), 1, + aux_sym_parameter_token1, + ACTIONS(7129), 1, anon_sym_RPAREN, STATE(2431), 1, aux_sym__directive_parameter_repeat1, @@ -146883,14 +147464,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [99269] = 7, + [99629] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6966), 1, + ACTIONS(7131), 1, anon_sym_ATdefault, - ACTIONS(6968), 1, + ACTIONS(7133), 1, anon_sym_ATendswitch, STATE(2444), 1, aux_sym_switch_repeat1, @@ -146898,12 +147479,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [99291] = 7, - ACTIONS(6795), 1, + [99651] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6970), 1, + ACTIONS(7135), 1, anon_sym_RPAREN, STATE(2448), 1, sym_comment, @@ -146913,12 +147494,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [99313] = 7, - ACTIONS(6795), 1, + [99673] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6972), 1, + ACTIONS(7137), 1, anon_sym_RPAREN, STATE(2431), 1, aux_sym__directive_parameter_repeat1, @@ -146928,14 +147509,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [99335] = 7, + [99695] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3683), 1, + ACTIONS(3769), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6974), 1, + ACTIONS(7139), 1, anon_sym_ATdefault, STATE(2425), 1, aux_sym_switch_repeat1, @@ -146943,12 +147524,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [99357] = 7, - ACTIONS(6795), 1, + [99717] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6976), 1, + ACTIONS(7141), 1, anon_sym_RPAREN, STATE(2431), 1, aux_sym__directive_parameter_repeat1, @@ -146958,14 +147539,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [99379] = 7, + [99739] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, - anon_sym_ATcase, ACTIONS(6978), 1, + anon_sym_ATcase, + ACTIONS(7143), 1, anon_sym_ATdefault, - ACTIONS(6980), 1, + ACTIONS(7145), 1, anon_sym_ATendswitch, STATE(2450), 1, aux_sym_switch_repeat1, @@ -146973,12 +147554,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [99401] = 7, - ACTIONS(6795), 1, + [99761] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6982), 1, + ACTIONS(7147), 1, anon_sym_RPAREN, STATE(2451), 1, aux_sym__directive_parameter_repeat1, @@ -146988,14 +147569,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [99423] = 7, + [99783] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6984), 1, + ACTIONS(7149), 1, anon_sym_ATdefault, - ACTIONS(6986), 1, + ACTIONS(7151), 1, anon_sym_ATendswitch, STATE(2454), 1, sym_comment, @@ -147003,14 +147584,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_switch_repeat1, STATE(3011), 1, sym__case, - [99445] = 7, + [99805] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3657), 1, + ACTIONS(3743), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6988), 1, + ACTIONS(7153), 1, anon_sym_ATdefault, STATE(2425), 1, aux_sym_switch_repeat1, @@ -147018,12 +147599,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [99467] = 7, - ACTIONS(6795), 1, + [99827] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(6990), 1, + ACTIONS(7155), 1, anon_sym_RPAREN, STATE(2431), 1, aux_sym__directive_parameter_repeat1, @@ -147033,14 +147614,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [99489] = 7, + [99849] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6992), 1, + ACTIONS(7157), 1, anon_sym_ATdefault, - ACTIONS(6994), 1, + ACTIONS(7159), 1, anon_sym_ATendswitch, STATE(2455), 1, aux_sym_switch_repeat1, @@ -147048,14 +147629,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [99511] = 7, + [99871] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(6996), 1, + ACTIONS(7161), 1, anon_sym_ATdefault, - ACTIONS(6998), 1, + ACTIONS(7163), 1, anon_sym_ATendswitch, STATE(2458), 1, sym_comment, @@ -147063,12 +147644,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_switch_repeat1, STATE(3011), 1, sym__case, - [99533] = 7, - ACTIONS(6795), 1, + [99893] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7000), 1, + ACTIONS(7165), 1, anon_sym_RPAREN, STATE(2431), 1, aux_sym__directive_parameter_repeat1, @@ -147078,14 +147659,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [99555] = 7, + [99915] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(7002), 1, + ACTIONS(7167), 1, anon_sym_ATdefault, - ACTIONS(7004), 1, + ACTIONS(7169), 1, anon_sym_ATendswitch, STATE(2440), 1, aux_sym_switch_repeat1, @@ -147093,14 +147674,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [99577] = 7, + [99937] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3575), 1, + ACTIONS(3659), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(7006), 1, + ACTIONS(7171), 1, anon_sym_ATdefault, STATE(2425), 1, aux_sym_switch_repeat1, @@ -147108,12 +147689,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [99599] = 7, - ACTIONS(6795), 1, + [99959] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7008), 1, + ACTIONS(7173), 1, anon_sym_RPAREN, STATE(2456), 1, aux_sym__directive_parameter_repeat1, @@ -147123,12 +147704,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [99621] = 7, - ACTIONS(6795), 1, + [99981] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7010), 1, + ACTIONS(7175), 1, anon_sym_RPAREN, STATE(2463), 1, sym_comment, @@ -147138,14 +147719,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [99643] = 7, + [100003] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3471), 1, + ACTIONS(3553), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(7012), 1, + ACTIONS(7177), 1, anon_sym_ATdefault, STATE(2425), 1, aux_sym_switch_repeat1, @@ -147153,14 +147734,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [99665] = 7, + [100025] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3827), 1, + ACTIONS(3916), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(7014), 1, + ACTIONS(7179), 1, anon_sym_ATdefault, STATE(2425), 1, aux_sym_switch_repeat1, @@ -147168,12 +147749,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [99687] = 7, - ACTIONS(6795), 1, + [100047] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7016), 1, + ACTIONS(7181), 1, anon_sym_RPAREN, STATE(2431), 1, aux_sym__directive_parameter_repeat1, @@ -147183,12 +147764,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [99709] = 7, - ACTIONS(6795), 1, + [100069] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7018), 1, + ACTIONS(7183), 1, anon_sym_RPAREN, STATE(2431), 1, aux_sym__directive_parameter_repeat1, @@ -147198,14 +147779,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [99731] = 7, + [100091] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(5527), 1, + ACTIONS(5659), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(7020), 1, + ACTIONS(7185), 1, anon_sym_ATdefault, STATE(2425), 1, aux_sym_switch_repeat1, @@ -147213,14 +147794,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [99753] = 7, + [100113] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(7022), 1, + ACTIONS(7187), 1, anon_sym_ATdefault, - ACTIONS(7024), 1, + ACTIONS(7189), 1, anon_sym_ATendswitch, STATE(2464), 1, aux_sym_switch_repeat1, @@ -147228,12 +147809,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [99775] = 7, - ACTIONS(6795), 1, + [100135] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7026), 1, + ACTIONS(7191), 1, anon_sym_RPAREN, STATE(2467), 1, aux_sym__directive_parameter_repeat1, @@ -147243,14 +147824,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [99797] = 7, + [100157] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(7028), 1, + ACTIONS(7193), 1, anon_sym_ATdefault, - ACTIONS(7030), 1, + ACTIONS(7195), 1, anon_sym_ATendswitch, STATE(2471), 1, sym_comment, @@ -147258,14 +147839,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_switch_repeat1, STATE(3011), 1, sym__case, - [99819] = 7, + [100179] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3227), 1, + ACTIONS(3303), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(7032), 1, + ACTIONS(7197), 1, anon_sym_ATdefault, STATE(2425), 1, aux_sym_switch_repeat1, @@ -147273,12 +147854,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [99841] = 7, - ACTIONS(6795), 1, + [100201] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7034), 1, + ACTIONS(7199), 1, anon_sym_RPAREN, STATE(2431), 1, aux_sym__directive_parameter_repeat1, @@ -147288,12 +147869,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [99863] = 7, - ACTIONS(6795), 1, + [100223] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7036), 1, + ACTIONS(7201), 1, anon_sym_RPAREN, STATE(2399), 1, aux_sym__directive_parameter_repeat1, @@ -147303,14 +147884,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [99885] = 7, + [100245] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(7038), 1, + ACTIONS(7203), 1, anon_sym_ATdefault, - ACTIONS(7040), 1, + ACTIONS(7205), 1, anon_sym_ATendswitch, STATE(2472), 1, aux_sym_switch_repeat1, @@ -147318,12 +147899,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [99907] = 7, - ACTIONS(6795), 1, + [100267] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7042), 1, + ACTIONS(7207), 1, anon_sym_RPAREN, STATE(2431), 1, aux_sym__directive_parameter_repeat1, @@ -147333,14 +147914,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [99929] = 7, + [100289] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3219), 1, + ACTIONS(3295), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(7044), 1, + ACTIONS(7209), 1, anon_sym_ATdefault, STATE(2425), 1, aux_sym_switch_repeat1, @@ -147348,12 +147929,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [99951] = 7, - ACTIONS(6795), 1, + [100311] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7046), 1, + ACTIONS(7211), 1, anon_sym_RPAREN, STATE(2473), 1, aux_sym__directive_parameter_repeat1, @@ -147363,14 +147944,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [99973] = 7, + [100333] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3211), 1, + ACTIONS(3287), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(7048), 1, + ACTIONS(7213), 1, anon_sym_ATdefault, STATE(2425), 1, aux_sym_switch_repeat1, @@ -147378,12 +147959,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [99995] = 7, - ACTIONS(6795), 1, + [100355] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7050), 1, + ACTIONS(7215), 1, anon_sym_RPAREN, STATE(2431), 1, aux_sym__directive_parameter_repeat1, @@ -147393,12 +147974,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [100017] = 7, - ACTIONS(6795), 1, + [100377] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7052), 1, + ACTIONS(7217), 1, anon_sym_RPAREN, STATE(2414), 1, aux_sym__directive_parameter_repeat1, @@ -147408,12 +147989,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [100039] = 7, - ACTIONS(6795), 1, + [100399] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7054), 1, + ACTIONS(7219), 1, anon_sym_RPAREN, STATE(2482), 1, sym_comment, @@ -147423,14 +148004,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [100061] = 7, + [100421] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3189), 1, + ACTIONS(3265), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(7056), 1, + ACTIONS(7221), 1, anon_sym_ATdefault, STATE(2425), 1, aux_sym_switch_repeat1, @@ -147438,12 +148019,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [100083] = 7, - ACTIONS(6795), 1, + [100443] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7058), 1, + ACTIONS(7223), 1, anon_sym_RPAREN, STATE(2431), 1, aux_sym__directive_parameter_repeat1, @@ -147453,14 +148034,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [100105] = 7, + [100465] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(7060), 1, + ACTIONS(7225), 1, anon_sym_ATdefault, - ACTIONS(7062), 1, + ACTIONS(7227), 1, anon_sym_ATendswitch, STATE(2483), 1, aux_sym_switch_repeat1, @@ -147468,12 +148049,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [100127] = 7, - ACTIONS(6795), 1, + [100487] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7064), 1, + ACTIONS(7229), 1, anon_sym_RPAREN, STATE(2484), 1, aux_sym__directive_parameter_repeat1, @@ -147483,14 +148064,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [100149] = 7, + [100509] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(7066), 1, + ACTIONS(7231), 1, anon_sym_ATdefault, - ACTIONS(7068), 1, + ACTIONS(7233), 1, anon_sym_ATendswitch, STATE(2487), 1, sym_comment, @@ -147498,14 +148079,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_switch_repeat1, STATE(3011), 1, sym__case, - [100171] = 7, + [100531] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(2941), 1, + ACTIONS(3011), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(7070), 1, + ACTIONS(7235), 1, anon_sym_ATdefault, STATE(2425), 1, aux_sym_switch_repeat1, @@ -147513,12 +148094,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [100193] = 7, - ACTIONS(6795), 1, + [100553] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7072), 1, + ACTIONS(7237), 1, anon_sym_RPAREN, STATE(2431), 1, aux_sym__directive_parameter_repeat1, @@ -147528,12 +148109,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [100215] = 7, - ACTIONS(6795), 1, + [100575] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7074), 1, + ACTIONS(7239), 1, anon_sym_RPAREN, STATE(2442), 1, aux_sym__directive_parameter_repeat1, @@ -147543,12 +148124,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [100237] = 7, - ACTIONS(6795), 1, + [100597] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7076), 1, + ACTIONS(7241), 1, anon_sym_RPAREN, STATE(2480), 1, aux_sym__directive_parameter_repeat1, @@ -147558,14 +148139,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [100259] = 7, + [100619] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(7078), 1, + ACTIONS(7243), 1, anon_sym_ATdefault, - ACTIONS(7080), 1, + ACTIONS(7245), 1, anon_sym_ATendswitch, STATE(2488), 1, aux_sym_switch_repeat1, @@ -147573,12 +148154,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [100281] = 7, - ACTIONS(6795), 1, + [100641] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7082), 1, + ACTIONS(7247), 1, anon_sym_RPAREN, STATE(2431), 1, aux_sym__directive_parameter_repeat1, @@ -147588,14 +148169,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [100303] = 7, + [100663] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(2733), 1, + ACTIONS(2798), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(7084), 1, + ACTIONS(7249), 1, anon_sym_ATdefault, STATE(2425), 1, aux_sym_switch_repeat1, @@ -147603,12 +148184,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [100325] = 7, - ACTIONS(6795), 1, + [100685] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7086), 1, + ACTIONS(7251), 1, anon_sym_RPAREN, STATE(2489), 1, aux_sym__directive_parameter_repeat1, @@ -147618,12 +148199,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [100347] = 7, - ACTIONS(6795), 1, + [100707] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7088), 1, + ACTIONS(7253), 1, anon_sym_RPAREN, STATE(2496), 1, sym_comment, @@ -147633,14 +148214,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [100369] = 7, + [100729] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(2317), 1, + ACTIONS(2373), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(7090), 1, + ACTIONS(7255), 1, anon_sym_ATdefault, STATE(2425), 1, aux_sym_switch_repeat1, @@ -147648,14 +148229,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [100391] = 7, + [100751] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(2631), 1, + ACTIONS(2694), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(7092), 1, + ACTIONS(7257), 1, anon_sym_ATdefault, STATE(2425), 1, aux_sym_switch_repeat1, @@ -147663,12 +148244,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [100413] = 7, - ACTIONS(6795), 1, + [100773] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7094), 1, + ACTIONS(7259), 1, anon_sym_RPAREN, STATE(2431), 1, aux_sym__directive_parameter_repeat1, @@ -147678,14 +148259,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [100435] = 7, + [100795] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(7096), 1, + ACTIONS(7261), 1, anon_sym_ATdefault, - ACTIONS(7098), 1, + ACTIONS(7263), 1, anon_sym_ATendswitch, STATE(2498), 1, aux_sym_switch_repeat1, @@ -147693,12 +148274,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [100457] = 7, - ACTIONS(6795), 1, + [100817] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7100), 1, + ACTIONS(7265), 1, anon_sym_RPAREN, STATE(2499), 1, aux_sym__directive_parameter_repeat1, @@ -147708,14 +148289,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [100479] = 7, + [100839] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(7102), 1, + ACTIONS(7267), 1, anon_sym_ATdefault, - ACTIONS(7104), 1, + ACTIONS(7269), 1, anon_sym_ATendswitch, STATE(2497), 1, aux_sym_switch_repeat1, @@ -147723,14 +148304,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [100501] = 7, + [100861] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(2401), 1, + ACTIONS(2459), 1, anon_sym_ATendswitch, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(7106), 1, + ACTIONS(7271), 1, anon_sym_ATdefault, STATE(2425), 1, aux_sym_switch_repeat1, @@ -147738,14 +148319,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [100523] = 7, + [100883] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(7108), 1, + ACTIONS(7273), 1, anon_sym_ATdefault, - ACTIONS(7110), 1, + ACTIONS(7275), 1, anon_sym_ATendswitch, STATE(2413), 1, aux_sym_switch_repeat1, @@ -147753,12 +148334,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [100545] = 7, - ACTIONS(6795), 1, + [100905] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7112), 1, + ACTIONS(7277), 1, anon_sym_RPAREN, STATE(2431), 1, aux_sym__directive_parameter_repeat1, @@ -147768,14 +148349,14 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [100567] = 7, + [100927] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6813), 1, + ACTIONS(6978), 1, anon_sym_ATcase, - ACTIONS(7114), 1, + ACTIONS(7279), 1, anon_sym_ATdefault, - ACTIONS(7116), 1, + ACTIONS(7281), 1, anon_sym_ATendswitch, STATE(2503), 1, aux_sym_switch_repeat1, @@ -147783,12 +148364,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3011), 1, sym__case, - [100589] = 7, - ACTIONS(6795), 1, + [100949] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7118), 1, + ACTIONS(7283), 1, anon_sym_RPAREN, STATE(2431), 1, aux_sym__directive_parameter_repeat1, @@ -147798,12 +148379,12 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [100611] = 7, - ACTIONS(6795), 1, + [100971] = 7, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6799), 1, + ACTIONS(6964), 1, aux_sym_parameter_token1, - ACTIONS(7120), 1, + ACTIONS(7285), 1, anon_sym_RPAREN, STATE(2505), 1, aux_sym__directive_parameter_repeat1, @@ -147813,98 +148394,98 @@ static const uint16_t ts_small_parse_table[] = { sym__text_with_parenthesis, STATE(3188), 1, sym_parameter, - [100633] = 4, + [100993] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7122), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, + ACTIONS(7289), 1, + aux_sym_text_token2, STATE(2509), 1, sym_comment, - ACTIONS(7124), 3, + ACTIONS(7287), 3, + anon_sym_DASH_DASH_RBRACE_RBRACE, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [100648] = 4, + [101008] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7126), 1, - anon_sym_RBRACE_RBRACE, + ACTIONS(7293), 1, + aux_sym_text_token2, STATE(2510), 1, sym_comment, - ACTIONS(7128), 3, + ACTIONS(7291), 3, + anon_sym_RBRACE_RBRACE, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [100663] = 4, + [101023] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6373), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, + ACTIONS(6520), 1, + aux_sym_text_token2, STATE(2511), 1, sym_comment, - ACTIONS(6375), 3, + ACTIONS(6518), 3, + anon_sym_DASH_DASH_RBRACE_RBRACE, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [100678] = 4, + [101038] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7126), 1, - anon_sym_BANG_BANG_RBRACE, + ACTIONS(7293), 1, + aux_sym_text_token2, STATE(2512), 1, sym_comment, - ACTIONS(7128), 3, + ACTIONS(7291), 3, + anon_sym_BANG_BANG_RBRACE, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [100693] = 4, + [101053] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6373), 1, - anon_sym_RBRACE_RBRACE, + ACTIONS(6520), 1, + aux_sym_text_token2, STATE(2513), 1, sym_comment, - ACTIONS(6375), 3, + ACTIONS(6518), 3, + anon_sym_RBRACE_RBRACE, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [100708] = 4, + [101068] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6373), 1, - anon_sym_ATendphp, STATE(2514), 1, sym_comment, - ACTIONS(6375), 3, + ACTIONS(6518), 2, + anon_sym_ATendphp, + aux_sym_text_token3, + ACTIONS(6520), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [100723] = 4, + [101083] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7126), 1, - anon_sym_ATendphp, STATE(2515), 1, sym_comment, - ACTIONS(7128), 3, + ACTIONS(7291), 2, + anon_sym_ATendphp, + aux_sym_text_token3, + ACTIONS(7293), 2, aux_sym_text_token1, aux_sym_text_token2, - aux_sym_text_token3, - [100738] = 4, + [101098] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6373), 1, - anon_sym_BANG_BANG_RBRACE, + ACTIONS(6520), 1, + aux_sym_text_token2, STATE(2516), 1, sym_comment, - ACTIONS(6375), 3, + ACTIONS(6518), 3, + anon_sym_BANG_BANG_RBRACE, aux_sym_text_token1, - aux_sym_text_token2, aux_sym_text_token3, - [100753] = 5, + [101113] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -147912,10 +148493,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3808), 1, sym__directive_body_with_parameter, - [100769] = 5, + [101129] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -147923,10 +148504,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3887), 1, sym__directive_body_with_parameter, - [100785] = 5, + [101145] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -147934,10 +148515,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3412), 1, sym__directive_body_with_parameter, - [100801] = 5, + [101161] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -147945,10 +148526,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3413), 1, sym__directive_body_with_parameter, - [100817] = 5, + [101177] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -147956,10 +148537,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3359), 1, sym__directive_body_with_parameter, - [100833] = 5, + [101193] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -147967,10 +148548,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3358), 1, sym__directive_body_with_parameter, - [100849] = 5, + [101209] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -147978,10 +148559,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3414), 1, sym__directive_body_with_parameter, - [100865] = 5, + [101225] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -147989,10 +148570,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3332), 1, sym__directive_body_with_parameter, - [100881] = 5, + [101241] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -148000,10 +148581,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3415), 1, sym__if_statement_directive_body, - [100897] = 5, + [101257] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -148011,10 +148592,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3416), 1, sym__if_statement_directive_body, - [100913] = 5, + [101273] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -148022,10 +148603,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3409), 1, sym__directive_body_with_parameter, - [100929] = 5, + [101289] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -148033,10 +148614,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3417), 1, sym__if_statement_directive_body, - [100945] = 5, + [101305] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -148044,10 +148625,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3418), 1, sym__if_statement_directive_body, - [100961] = 5, + [101321] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -148055,10 +148636,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3419), 1, sym__if_statement_directive_body, - [100977] = 5, + [101337] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -148066,10 +148647,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3606), 1, sym__if_statement_directive_body, - [100993] = 5, + [101353] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -148077,10 +148658,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3476), 1, sym__if_statement_directive_body, - [101009] = 5, + [101369] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -148088,10 +148669,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3331), 1, sym__directive_body_with_parameter, - [101025] = 5, + [101385] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -148099,10 +148680,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3423), 1, sym__if_statement_directive_body, - [101041] = 5, + [101401] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -148110,10 +148691,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3425), 1, sym__if_statement_directive_body, - [101057] = 5, + [101417] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -148121,10 +148702,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3426), 1, sym__if_statement_directive_body, - [101073] = 5, + [101433] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -148132,10 +148713,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3427), 1, sym__directive_body_with_parameter, - [101089] = 5, + [101449] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -148143,10 +148724,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3428), 1, sym__directive_body_with_parameter, - [101105] = 5, + [101465] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -148154,10 +148735,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3429), 1, sym__directive_body_with_parameter, - [101121] = 5, + [101481] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -148165,10 +148746,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3430), 1, sym__directive_body_with_parameter, - [101137] = 5, + [101497] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -148176,10 +148757,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3431), 1, sym__directive_body_with_parameter, - [101153] = 5, + [101513] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -148187,10 +148768,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3433), 1, sym__directive_body_with_parameter, - [101169] = 5, + [101529] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -148198,10 +148779,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3434), 1, sym__directive_body_with_parameter, - [101185] = 5, + [101545] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -148209,10 +148790,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3446), 1, sym__directive_body_with_parameter, - [101201] = 5, + [101561] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -148220,10 +148801,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3447), 1, sym__directive_body_with_parameter, - [101217] = 5, + [101577] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -148231,10 +148812,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3448), 1, sym__directive_body_with_parameter, - [101233] = 5, + [101593] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -148242,10 +148823,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3449), 1, sym__directive_body_with_parameter, - [101249] = 5, + [101609] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -148253,10 +148834,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3450), 1, sym__directive_body_with_parameter, - [101265] = 5, + [101625] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -148264,10 +148845,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3451), 1, sym__directive_body_with_parameter, - [101281] = 5, + [101641] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -148275,10 +148856,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3410), 1, sym__directive_body_with_parameter, - [101297] = 5, + [101657] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -148286,10 +148867,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3452), 1, sym__directive_body_with_parameter, - [101313] = 5, + [101673] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -148297,10 +148878,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3330), 1, sym__directive_body_with_parameter, - [101329] = 5, + [101689] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -148308,10 +148889,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3453), 1, sym__if_statement_directive_body, - [101345] = 5, + [101705] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -148319,10 +148900,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3454), 1, sym__if_statement_directive_body, - [101361] = 5, + [101721] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -148330,10 +148911,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3455), 1, sym__if_statement_directive_body, - [101377] = 5, + [101737] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -148341,10 +148922,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3456), 1, sym__if_statement_directive_body, - [101393] = 5, + [101753] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -148352,10 +148933,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3457), 1, sym__if_statement_directive_body, - [101409] = 5, + [101769] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -148363,10 +148944,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3408), 1, sym__directive_body_with_parameter, - [101425] = 5, + [101785] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -148374,10 +148955,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3580), 1, sym__if_statement_directive_body, - [101441] = 5, + [101801] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -148385,10 +148966,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3390), 1, sym__directive_body_with_parameter, - [101457] = 5, + [101817] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -148396,10 +148977,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3329), 1, sym__directive_body_with_parameter, - [101473] = 5, + [101833] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -148407,10 +148988,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3555), 1, sym__directive_body_with_parameter, - [101489] = 5, + [101849] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -148418,10 +148999,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3462), 1, sym__if_statement_directive_body, - [101505] = 5, + [101865] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -148429,10 +149010,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3463), 1, sym__if_statement_directive_body, - [101521] = 5, + [101881] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -148440,10 +149021,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3464), 1, sym__if_statement_directive_body, - [101537] = 5, + [101897] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -148451,10 +149032,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3465), 1, sym__directive_body_with_parameter, - [101553] = 5, + [101913] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -148462,10 +149043,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3328), 1, sym__directive_body_with_parameter, - [101569] = 5, + [101929] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -148473,10 +149054,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3327), 1, sym__directive_body_with_parameter, - [101585] = 5, + [101945] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -148484,10 +149065,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3397), 1, sym__directive_body_with_parameter, - [101601] = 5, + [101961] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -148495,10 +149076,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3326), 1, sym__directive_body_with_parameter, - [101617] = 5, + [101977] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -148506,10 +149087,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3323), 1, sym__if_statement_directive_body, - [101633] = 5, + [101993] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -148517,10 +149098,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3396), 1, sym__directive_body_with_parameter, - [101649] = 5, + [102009] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -148528,10 +149109,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3393), 1, sym__directive_body_with_parameter, - [101665] = 5, + [102025] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -148539,10 +149120,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3392), 1, sym__directive_body_with_parameter, - [101681] = 5, + [102041] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -148550,10 +149131,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3466), 1, sym__directive_body_with_parameter, - [101697] = 5, + [102057] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -148561,10 +149142,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3467), 1, sym__directive_body_with_parameter, - [101713] = 5, + [102073] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -148572,10 +149153,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3468), 1, sym__directive_body_with_parameter, - [101729] = 5, + [102089] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -148583,10 +149164,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3469), 1, sym__directive_body_with_parameter, - [101745] = 5, + [102105] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -148594,10 +149175,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3472), 1, sym__directive_body_with_parameter, - [101761] = 5, + [102121] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -148605,10 +149186,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3473), 1, sym__directive_body_with_parameter, - [101777] = 5, + [102137] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -148616,10 +149197,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3486), 1, sym__directive_body_with_parameter, - [101793] = 5, + [102153] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -148627,10 +149208,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3487), 1, sym__directive_body_with_parameter, - [101809] = 5, + [102169] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -148638,10 +149219,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3488), 1, sym__directive_body_with_parameter, - [101825] = 5, + [102185] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -148649,10 +149230,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3489), 1, sym__directive_body_with_parameter, - [101841] = 5, + [102201] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -148660,10 +149241,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3490), 1, sym__directive_body_with_parameter, - [101857] = 5, + [102217] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -148671,10 +149252,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3491), 1, sym__directive_body_with_parameter, - [101873] = 5, + [102233] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -148682,10 +149263,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3492), 1, sym__directive_body_with_parameter, - [101889] = 5, + [102249] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -148693,10 +149274,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3322), 1, sym__if_statement_directive_body, - [101905] = 5, + [102265] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -148704,10 +149285,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3493), 1, sym__if_statement_directive_body, - [101921] = 5, + [102281] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -148715,10 +149296,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3494), 1, sym__if_statement_directive_body, - [101937] = 5, + [102297] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -148726,10 +149307,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3495), 1, sym__if_statement_directive_body, - [101953] = 5, + [102313] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -148737,10 +149318,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3496), 1, sym__if_statement_directive_body, - [101969] = 5, + [102329] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -148748,10 +149329,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3497), 1, sym__if_statement_directive_body, - [101985] = 5, + [102345] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -148759,10 +149340,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3554), 1, sym__directive_body_with_parameter, - [102001] = 5, + [102361] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -148770,10 +149351,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3553), 1, sym__directive_body_with_parameter, - [102017] = 5, + [102377] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -148781,10 +149362,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3391), 1, sym__directive_body_with_parameter, - [102033] = 5, + [102393] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -148792,10 +149373,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3529), 1, sym__directive_body_with_parameter, - [102049] = 5, + [102409] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -148803,10 +149384,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3501), 1, sym__if_statement_directive_body, - [102065] = 5, + [102425] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -148814,10 +149395,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3502), 1, sym__if_statement_directive_body, - [102081] = 5, + [102441] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -148825,10 +149406,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3504), 1, sym__if_statement_directive_body, - [102097] = 5, + [102457] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -148836,10 +149417,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3505), 1, sym__directive_body_with_parameter, - [102113] = 5, + [102473] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -148847,10 +149428,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3506), 1, sym__directive_body_with_parameter, - [102129] = 5, + [102489] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -148858,10 +149439,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3507), 1, sym__directive_body_with_parameter, - [102145] = 5, + [102505] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -148869,10 +149450,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3371), 1, sym__directive_body_with_parameter, - [102161] = 5, + [102521] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -148880,10 +149461,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3508), 1, sym__directive_body_with_parameter, - [102177] = 5, + [102537] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -148891,10 +149472,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3389), 1, sym__directive_body_with_parameter, - [102193] = 5, + [102553] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -148902,10 +149483,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3509), 1, sym__directive_body_with_parameter, - [102209] = 5, + [102569] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -148913,10 +149494,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3510), 1, sym__directive_body_with_parameter, - [102225] = 5, + [102585] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -148924,10 +149505,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3511), 1, sym__directive_body_with_parameter, - [102241] = 5, + [102601] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -148935,10 +149516,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3388), 1, sym__if_statement_directive_body, - [102257] = 5, + [102617] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -148946,10 +149527,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3523), 1, sym__directive_body_with_parameter, - [102273] = 5, + [102633] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -148957,10 +149538,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3524), 1, sym__directive_body_with_parameter, - [102289] = 5, + [102649] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -148968,10 +149549,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3310), 1, sym__if_statement_directive_body, - [102305] = 5, + [102665] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -148979,10 +149560,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3297), 1, sym__if_statement_directive_body, - [102321] = 5, + [102681] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -148990,10 +149571,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3525), 1, sym__directive_body_with_parameter, - [102337] = 5, + [102697] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -149001,10 +149582,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3526), 1, sym__directive_body_with_parameter, - [102353] = 5, + [102713] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -149012,10 +149593,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3530), 1, sym__directive_body_with_parameter, - [102369] = 5, + [102729] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -149023,10 +149604,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3531), 1, sym__directive_body_with_parameter, - [102385] = 5, + [102745] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -149034,10 +149615,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3387), 1, sym__if_statement_directive_body, - [102401] = 5, + [102761] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -149045,10 +149626,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3532), 1, sym__directive_body_with_parameter, - [102417] = 5, + [102777] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -149056,10 +149637,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3400), 1, sym__if_statement_directive_body, - [102433] = 5, + [102793] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -149067,10 +149648,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3533), 1, sym__if_statement_directive_body, - [102449] = 5, + [102809] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -149078,10 +149659,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3534), 1, sym__if_statement_directive_body, - [102465] = 5, + [102825] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -149089,10 +149670,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3535), 1, sym__if_statement_directive_body, - [102481] = 5, + [102841] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -149100,10 +149681,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3536), 1, sym__if_statement_directive_body, - [102497] = 5, + [102857] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -149111,10 +149692,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3537), 1, sym__if_statement_directive_body, - [102513] = 5, + [102873] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -149122,10 +149703,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3528), 1, sym__directive_body_with_parameter, - [102529] = 5, + [102889] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -149133,10 +149714,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3527), 1, sym__directive_body_with_parameter, - [102545] = 5, + [102905] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -149144,10 +149725,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3503), 1, sym__directive_body_with_parameter, - [102561] = 5, + [102921] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -149155,10 +149736,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3542), 1, sym__if_statement_directive_body, - [102577] = 5, + [102937] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -149166,10 +149747,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3543), 1, sym__if_statement_directive_body, - [102593] = 5, + [102953] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -149177,10 +149758,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3544), 1, sym__if_statement_directive_body, - [102609] = 5, + [102969] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -149188,10 +149769,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3545), 1, sym__directive_body_with_parameter, - [102625] = 5, + [102985] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -149199,10 +149780,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3546), 1, sym__directive_body_with_parameter, - [102641] = 5, + [103001] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -149210,10 +149791,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3547), 1, sym__directive_body_with_parameter, - [102657] = 5, + [103017] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -149221,10 +149802,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3548), 1, sym__directive_body_with_parameter, - [102673] = 5, + [103033] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -149232,10 +149813,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3549), 1, sym__directive_body_with_parameter, - [102689] = 5, + [103049] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -149243,10 +149824,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3552), 1, sym__directive_body_with_parameter, - [102705] = 5, + [103065] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -149254,10 +149835,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3556), 1, sym__directive_body_with_parameter, - [102721] = 5, + [103081] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -149265,10 +149846,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3568), 1, sym__directive_body_with_parameter, - [102737] = 5, + [103097] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -149276,10 +149857,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3569), 1, sym__directive_body_with_parameter, - [102753] = 5, + [103113] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -149287,10 +149868,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3386), 1, sym__if_statement_directive_body, - [102769] = 5, + [103129] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -149298,10 +149879,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3570), 1, sym__directive_body_with_parameter, - [102785] = 5, + [103145] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -149309,10 +149890,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3571), 1, sym__directive_body_with_parameter, - [102801] = 5, + [103161] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -149320,10 +149901,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3572), 1, sym__directive_body_with_parameter, - [102817] = 5, + [103177] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -149331,10 +149912,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3573), 1, sym__directive_body_with_parameter, - [102833] = 5, + [103193] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -149342,10 +149923,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3574), 1, sym__directive_body_with_parameter, - [102849] = 5, + [103209] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -149353,10 +149934,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3275), 1, sym__directive_body_with_parameter, - [102865] = 5, + [103225] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -149364,10 +149945,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3575), 1, sym__if_statement_directive_body, - [102881] = 5, + [103241] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -149375,10 +149956,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3607), 1, sym__if_statement_directive_body, - [102897] = 5, + [103257] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -149386,10 +149967,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3576), 1, sym__if_statement_directive_body, - [102913] = 5, + [103273] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -149397,10 +149978,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3657), 1, sym__if_statement_directive_body, - [102929] = 5, + [103289] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -149408,10 +149989,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3577), 1, sym__if_statement_directive_body, - [102945] = 5, + [103305] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -149419,10 +150000,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3578), 1, sym__if_statement_directive_body, - [102961] = 5, + [103321] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -149430,10 +150011,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3579), 1, sym__if_statement_directive_body, - [102977] = 5, + [103337] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -149441,10 +150022,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3658), 1, sym__if_statement_directive_body, - [102993] = 5, + [103353] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -149452,10 +150033,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3585), 1, sym__if_statement_directive_body, - [103009] = 5, + [103369] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -149463,10 +150044,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3586), 1, sym__if_statement_directive_body, - [103025] = 5, + [103385] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -149474,10 +150055,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3274), 1, sym__directive_body_with_parameter, - [103041] = 5, + [103401] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -149485,10 +150066,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3273), 1, sym__directive_body_with_parameter, - [103057] = 5, + [103417] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -149496,10 +150077,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3587), 1, sym__if_statement_directive_body, - [103073] = 5, + [103433] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -149507,10 +150088,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3381), 1, sym__if_statement_directive_body, - [103089] = 5, + [103449] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -149518,10 +150099,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3293), 1, sym__if_statement_directive_body, - [103105] = 5, + [103465] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -149529,10 +150110,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3292), 1, sym__if_statement_directive_body, - [103121] = 5, + [103481] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -149540,10 +150121,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3380), 1, sym__if_statement_directive_body, - [103137] = 5, + [103497] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -149551,10 +150132,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3379), 1, sym__if_statement_directive_body, - [103153] = 5, + [103513] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -149562,10 +150143,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3588), 1, sym__directive_body_with_parameter, - [103169] = 5, + [103529] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -149573,10 +150154,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3589), 1, sym__directive_body_with_parameter, - [103185] = 5, + [103545] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -149584,10 +150165,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3378), 1, sym__if_statement_directive_body, - [103201] = 5, + [103561] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -149595,10 +150176,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3590), 1, sym__directive_body_with_parameter, - [103217] = 5, + [103577] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -149606,10 +150187,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3591), 1, sym__directive_body_with_parameter, - [103233] = 5, + [103593] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -149617,10 +150198,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3592), 1, sym__directive_body_with_parameter, - [103249] = 5, + [103609] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -149628,10 +150209,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3593), 1, sym__directive_body_with_parameter, - [103265] = 5, + [103625] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -149639,10 +150220,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3594), 1, sym__directive_body_with_parameter, - [103281] = 5, + [103641] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -149650,10 +150231,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3604), 1, sym__directive_body_with_parameter, - [103297] = 5, + [103657] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -149661,10 +150242,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3608), 1, sym__directive_body_with_parameter, - [103313] = 5, + [103673] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -149672,10 +150253,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3609), 1, sym__directive_body_with_parameter, - [103329] = 5, + [103689] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -149683,10 +150264,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3610), 1, sym__directive_body_with_parameter, - [103345] = 5, + [103705] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -149694,10 +150275,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3611), 1, sym__directive_body_with_parameter, - [103361] = 5, + [103721] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -149705,10 +150286,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3612), 1, sym__directive_body_with_parameter, - [103377] = 5, + [103737] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -149716,10 +150297,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3613), 1, sym__directive_body_with_parameter, - [103393] = 5, + [103753] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -149727,10 +150308,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3291), 1, sym__if_statement_directive_body, - [103409] = 5, + [103769] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -149738,10 +150319,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3614), 1, sym__if_statement_directive_body, - [103425] = 5, + [103785] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -149749,10 +150330,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3615), 1, sym__if_statement_directive_body, - [103441] = 5, + [103801] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -149760,10 +150341,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3616), 1, sym__if_statement_directive_body, - [103457] = 5, + [103817] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -149771,10 +150352,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3617), 1, sym__if_statement_directive_body, - [103473] = 5, + [103833] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -149782,10 +150363,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3618), 1, sym__if_statement_directive_body, - [103489] = 5, + [103849] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -149793,10 +150374,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3377), 1, sym__if_statement_directive_body, - [103505] = 5, + [103865] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -149804,10 +150385,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3290), 1, sym__directive_body_with_parameter, - [103521] = 5, + [103881] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -149815,10 +150396,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3376), 1, sym__directive_body_with_parameter, - [103537] = 5, + [103897] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -149826,10 +150407,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3581), 1, sym__if_statement_directive_body, - [103553] = 5, + [103913] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -149837,10 +150418,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3623), 1, sym__if_statement_directive_body, - [103569] = 5, + [103929] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -149848,10 +150429,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3624), 1, sym__if_statement_directive_body, - [103585] = 5, + [103945] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -149859,10 +150440,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3625), 1, sym__if_statement_directive_body, - [103601] = 5, + [103961] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -149870,10 +150451,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3626), 1, sym__directive_body_with_parameter, - [103617] = 5, + [103977] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -149881,10 +150462,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3375), 1, sym__directive_body_with_parameter, - [103633] = 5, + [103993] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -149892,10 +150473,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3627), 1, sym__directive_body_with_parameter, - [103649] = 5, + [104009] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -149903,10 +150484,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3374), 1, sym__directive_body_with_parameter, - [103665] = 5, + [104025] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -149914,10 +150495,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3628), 1, sym__directive_body_with_parameter, - [103681] = 5, + [104041] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -149925,10 +150506,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3629), 1, sym__directive_body_with_parameter, - [103697] = 5, + [104057] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -149936,10 +150517,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3630), 1, sym__directive_body_with_parameter, - [103713] = 5, + [104073] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -149947,10 +150528,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3636), 1, sym__directive_body_with_parameter, - [103729] = 5, + [104089] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -149958,10 +150539,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3373), 1, sym__directive_body_with_parameter, - [103745] = 5, + [104105] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -149969,10 +150550,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3637), 1, sym__directive_body_with_parameter, - [103761] = 5, + [104121] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -149980,10 +150561,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3289), 1, sym__directive_body_with_parameter, - [103777] = 5, + [104137] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -149991,10 +150572,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3288), 1, sym__directive_body_with_parameter, - [103793] = 5, + [104153] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -150002,10 +150583,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3649), 1, sym__directive_body_with_parameter, - [103809] = 5, + [104169] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -150013,10 +150594,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3650), 1, sym__directive_body_with_parameter, - [103825] = 5, + [104185] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -150024,10 +150605,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3651), 1, sym__directive_body_with_parameter, - [103841] = 5, + [104201] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -150035,10 +150616,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3652), 1, sym__directive_body_with_parameter, - [103857] = 5, + [104217] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -150046,10 +150627,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3372), 1, sym__directive_body_with_parameter, - [103873] = 5, + [104233] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -150057,10 +150638,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3257), 1, sym__directive_body_with_parameter, - [103889] = 5, + [104249] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -150068,10 +150649,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3654), 1, sym__directive_body_with_parameter, - [103905] = 5, + [104265] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -150079,10 +150660,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3655), 1, sym__directive_body_with_parameter, - [103921] = 5, + [104281] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -150090,10 +150671,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3269), 1, sym__directive_body_with_parameter, - [103937] = 5, + [104297] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -150101,10 +150682,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3656), 1, sym__if_statement_directive_body, - [103953] = 5, + [104313] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -150112,10 +150693,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3660), 1, sym__if_statement_directive_body, - [103969] = 5, + [104329] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -150123,10 +150704,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3661), 1, sym__if_statement_directive_body, - [103985] = 5, + [104345] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -150134,10 +150715,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3662), 1, sym__if_statement_directive_body, - [104001] = 5, + [104361] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -150145,10 +150726,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3663), 1, sym__if_statement_directive_body, - [104017] = 5, + [104377] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -150156,10 +150737,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3668), 1, sym__if_statement_directive_body, - [104033] = 5, + [104393] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -150167,10 +150748,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3669), 1, sym__if_statement_directive_body, - [104049] = 5, + [104409] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -150178,10 +150759,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3601), 1, sym__if_statement_directive_body, - [104065] = 5, + [104425] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -150189,10 +150770,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3671), 1, sym__directive_body_with_parameter, - [104081] = 5, + [104441] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -150200,10 +150781,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3672), 1, sym__directive_body_with_parameter, - [104097] = 5, + [104457] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -150211,10 +150792,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3673), 1, sym__directive_body_with_parameter, - [104113] = 5, + [104473] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -150222,10 +150803,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3674), 1, sym__directive_body_with_parameter, - [104129] = 5, + [104489] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -150233,10 +150814,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3675), 1, sym__directive_body_with_parameter, - [104145] = 5, + [104505] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -150244,10 +150825,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3676), 1, sym__directive_body_with_parameter, - [104161] = 5, + [104521] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -150255,10 +150836,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3677), 1, sym__directive_body_with_parameter, - [104177] = 5, + [104537] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -150266,10 +150847,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3690), 1, sym__directive_body_with_parameter, - [104193] = 5, + [104553] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -150277,10 +150858,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3691), 1, sym__directive_body_with_parameter, - [104209] = 5, + [104569] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -150288,10 +150869,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3692), 1, sym__directive_body_with_parameter, - [104225] = 5, + [104585] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -150299,10 +150880,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3344), 1, sym__if_statement_directive_body, - [104241] = 5, + [104601] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -150310,10 +150891,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3693), 1, sym__directive_body_with_parameter, - [104257] = 5, + [104617] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -150321,10 +150902,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3694), 1, sym__directive_body_with_parameter, - [104273] = 5, + [104633] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -150332,10 +150913,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3695), 1, sym__directive_body_with_parameter, - [104289] = 5, + [104649] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -150343,10 +150924,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3696), 1, sym__directive_body_with_parameter, - [104305] = 5, + [104665] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -150354,10 +150935,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3279), 1, sym__directive_body_with_parameter, - [104321] = 5, + [104681] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -150365,10 +150946,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3697), 1, sym__if_statement_directive_body, - [104337] = 5, + [104697] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -150376,10 +150957,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3698), 1, sym__if_statement_directive_body, - [104353] = 5, + [104713] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -150387,10 +150968,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3370), 1, sym__directive_body_with_parameter, - [104369] = 5, + [104729] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -150398,10 +150979,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3699), 1, sym__if_statement_directive_body, - [104385] = 5, + [104745] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -150409,10 +150990,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3357), 1, sym__directive_body_with_parameter, - [104401] = 5, + [104761] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -150420,10 +151001,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3700), 1, sym__if_statement_directive_body, - [104417] = 5, + [104777] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -150431,10 +151012,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3701), 1, sym__if_statement_directive_body, - [104433] = 5, + [104793] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -150442,10 +151023,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3706), 1, sym__if_statement_directive_body, - [104449] = 5, + [104809] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -150453,10 +151034,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3707), 1, sym__if_statement_directive_body, - [104465] = 5, + [104825] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -150464,10 +151045,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3708), 1, sym__if_statement_directive_body, - [104481] = 5, + [104841] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -150475,10 +151056,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3712), 1, sym__directive_body_with_parameter, - [104497] = 5, + [104857] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -150486,10 +151067,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3280), 1, sym__directive_body_with_parameter, - [104513] = 5, + [104873] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -150497,10 +151078,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3263), 1, sym__directive_body_with_parameter, - [104529] = 5, + [104889] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -150508,10 +151089,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3713), 1, sym__directive_body_with_parameter, - [104545] = 5, + [104905] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -150519,10 +151100,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3714), 1, sym__directive_body_with_parameter, - [104561] = 5, + [104921] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -150530,10 +151111,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3356), 1, sym__directive_body_with_parameter, - [104577] = 5, + [104937] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -150541,10 +151122,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3272), 1, sym__directive_body_with_parameter, - [104593] = 5, + [104953] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -150552,10 +151133,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3355), 1, sym__directive_body_with_parameter, - [104609] = 5, + [104969] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -150563,10 +151144,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3271), 1, sym__directive_body_with_parameter, - [104625] = 5, + [104985] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -150574,10 +151155,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3715), 1, sym__directive_body_with_parameter, - [104641] = 5, + [105001] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -150585,10 +151166,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3716), 1, sym__directive_body_with_parameter, - [104657] = 5, + [105017] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -150596,19 +151177,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3270), 1, sym__directive_body_with_parameter, - [104673] = 3, + [105033] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2762), 1, sym_comment, - ACTIONS(6361), 3, + ACTIONS(6506), 3, anon_sym_ATdefault, anon_sym_ATendswitch, anon_sym_ATcase, - [104685] = 5, + [105045] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -150616,10 +151197,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3719), 1, sym__directive_body_with_parameter, - [104701] = 5, + [105061] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -150627,10 +151208,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3720), 1, sym__directive_body_with_parameter, - [104717] = 5, + [105077] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -150638,10 +151219,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3732), 1, sym__directive_body_with_parameter, - [104733] = 5, + [105093] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -150649,10 +151230,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3733), 1, sym__directive_body_with_parameter, - [104749] = 5, + [105109] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -150660,10 +151241,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3734), 1, sym__directive_body_with_parameter, - [104765] = 5, + [105125] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -150671,10 +151252,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3735), 1, sym__directive_body_with_parameter, - [104781] = 5, + [105141] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -150682,10 +151263,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3736), 1, sym__directive_body_with_parameter, - [104797] = 5, + [105157] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -150693,10 +151274,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3737), 1, sym__directive_body_with_parameter, - [104813] = 5, + [105173] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -150704,19 +151285,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3738), 1, sym__directive_body_with_parameter, - [104829] = 3, + [105189] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(2772), 1, sym_comment, - ACTIONS(6365), 3, + ACTIONS(6510), 3, anon_sym_ATdefault, anon_sym_ATendswitch, anon_sym_ATcase, - [104841] = 5, + [105201] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -150724,10 +151305,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3739), 1, sym__if_statement_directive_body, - [104857] = 5, + [105217] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -150735,10 +151316,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3740), 1, sym__if_statement_directive_body, - [104873] = 5, + [105233] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -150746,10 +151327,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3741), 1, sym__if_statement_directive_body, - [104889] = 5, + [105249] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -150757,10 +151338,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3742), 1, sym__if_statement_directive_body, - [104905] = 5, + [105265] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -150768,10 +151349,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3743), 1, sym__if_statement_directive_body, - [104921] = 5, + [105281] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -150779,10 +151360,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3748), 1, sym__if_statement_directive_body, - [104937] = 5, + [105297] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -150790,10 +151371,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3749), 1, sym__if_statement_directive_body, - [104953] = 5, + [105313] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -150801,10 +151382,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3268), 1, sym__if_statement_directive_body, - [104969] = 5, + [105329] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -150812,10 +151393,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3750), 1, sym__if_statement_directive_body, - [104985] = 5, + [105345] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -150823,10 +151404,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3751), 1, sym__directive_body_with_parameter, - [105001] = 5, + [105361] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -150834,10 +151415,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3752), 1, sym__directive_body_with_parameter, - [105017] = 5, + [105377] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -150845,10 +151426,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3753), 1, sym__directive_body_with_parameter, - [105033] = 5, + [105393] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -150856,10 +151437,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3754), 1, sym__directive_body_with_parameter, - [105049] = 5, + [105409] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -150867,10 +151448,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3755), 1, sym__directive_body_with_parameter, - [105065] = 5, + [105425] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -150878,10 +151459,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3757), 1, sym__directive_body_with_parameter, - [105081] = 5, + [105441] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -150889,10 +151470,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3267), 1, sym__if_statement_directive_body, - [105097] = 5, + [105457] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -150900,10 +151481,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3758), 1, sym__directive_body_with_parameter, - [105113] = 5, + [105473] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -150911,10 +151492,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3354), 1, sym__directive_body_with_parameter, - [105129] = 5, + [105489] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -150922,10 +151503,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3768), 1, sym__directive_body_with_parameter, - [105145] = 5, + [105505] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -150933,10 +151514,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3769), 1, sym__directive_body_with_parameter, - [105161] = 5, + [105521] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -150944,10 +151525,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3770), 1, sym__directive_body_with_parameter, - [105177] = 5, + [105537] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -150955,10 +151536,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3771), 1, sym__directive_body_with_parameter, - [105193] = 5, + [105553] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -150966,10 +151547,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3772), 1, sym__directive_body_with_parameter, - [105209] = 5, + [105569] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -150977,10 +151558,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3353), 1, sym__directive_body_with_parameter, - [105225] = 5, + [105585] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -150988,10 +151569,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3266), 1, sym__if_statement_directive_body, - [105241] = 5, + [105601] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -150999,10 +151580,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3265), 1, sym__if_statement_directive_body, - [105257] = 5, + [105617] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -151010,10 +151591,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3773), 1, sym__directive_body_with_parameter, - [105273] = 5, + [105633] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -151021,10 +151602,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3774), 1, sym__directive_body_with_parameter, - [105289] = 5, + [105649] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -151032,10 +151613,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3264), 1, sym__if_statement_directive_body, - [105305] = 5, + [105665] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -151043,10 +151624,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3775), 1, sym__if_statement_directive_body, - [105321] = 5, + [105681] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -151054,10 +151635,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3352), 1, sym__directive_body_with_parameter, - [105337] = 5, + [105697] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -151065,10 +151646,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3729), 1, sym__if_statement_directive_body, - [105353] = 5, + [105713] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -151076,10 +151657,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3777), 1, sym__if_statement_directive_body, - [105369] = 5, + [105729] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -151087,10 +151668,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3778), 1, sym__if_statement_directive_body, - [105385] = 5, + [105745] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -151098,10 +151679,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3779), 1, sym__if_statement_directive_body, - [105401] = 5, + [105761] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -151109,10 +151690,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3784), 1, sym__if_statement_directive_body, - [105417] = 5, + [105777] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -151120,10 +151701,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3785), 1, sym__if_statement_directive_body, - [105433] = 5, + [105793] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -151131,10 +151712,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3786), 1, sym__if_statement_directive_body, - [105449] = 5, + [105809] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -151142,10 +151723,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3787), 1, sym__directive_body_with_parameter, - [105465] = 5, + [105825] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -151153,10 +151734,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3788), 1, sym__directive_body_with_parameter, - [105481] = 5, + [105841] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -151164,10 +151745,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3789), 1, sym__directive_body_with_parameter, - [105497] = 5, + [105857] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -151175,10 +151756,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3790), 1, sym__directive_body_with_parameter, - [105513] = 5, + [105873] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -151186,10 +151767,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3791), 1, sym__directive_body_with_parameter, - [105529] = 5, + [105889] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -151197,10 +151778,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3794), 1, sym__directive_body_with_parameter, - [105545] = 5, + [105905] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -151208,10 +151789,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3795), 1, sym__directive_body_with_parameter, - [105561] = 5, + [105921] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -151219,10 +151800,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3807), 1, sym__directive_body_with_parameter, - [105577] = 5, + [105937] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -151230,10 +151811,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3360), 1, sym__directive_body_with_parameter, - [105593] = 5, + [105953] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -151241,10 +151822,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3809), 1, sym__directive_body_with_parameter, - [105609] = 5, + [105969] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -151252,10 +151833,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3810), 1, sym__directive_body_with_parameter, - [105625] = 5, + [105985] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -151263,10 +151844,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3811), 1, sym__directive_body_with_parameter, - [105641] = 5, + [106001] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -151274,10 +151855,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3812), 1, sym__directive_body_with_parameter, - [105657] = 5, + [106017] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -151285,10 +151866,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3813), 1, sym__directive_body_with_parameter, - [105673] = 5, + [106033] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -151296,10 +151877,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3361), 1, sym__directive_body_with_parameter, - [105689] = 5, + [106049] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -151307,10 +151888,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3351), 1, sym__directive_body_with_parameter, - [105705] = 5, + [106065] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -151318,10 +151899,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3814), 1, sym__if_statement_directive_body, - [105721] = 5, + [106081] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -151329,10 +151910,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3815), 1, sym__if_statement_directive_body, - [105737] = 5, + [106097] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -151340,10 +151921,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3816), 1, sym__if_statement_directive_body, - [105753] = 5, + [106113] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -151351,10 +151932,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3817), 1, sym__if_statement_directive_body, - [105769] = 5, + [106129] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -151362,10 +151943,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3818), 1, sym__if_statement_directive_body, - [105785] = 5, + [106145] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -151373,10 +151954,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3823), 1, sym__if_statement_directive_body, - [105801] = 5, + [106161] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -151384,10 +151965,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3824), 1, sym__if_statement_directive_body, - [105817] = 5, + [106177] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -151395,10 +151976,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3350), 1, sym__if_statement_directive_body, - [105833] = 5, + [106193] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -151406,10 +151987,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3349), 1, sym__if_statement_directive_body, - [105849] = 5, + [106209] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -151417,10 +151998,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3348), 1, sym__if_statement_directive_body, - [105865] = 5, + [106225] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -151428,10 +152009,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3825), 1, sym__if_statement_directive_body, - [105881] = 5, + [106241] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -151439,10 +152020,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3826), 1, sym__directive_body_with_parameter, - [105897] = 5, + [106257] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -151450,10 +152031,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3827), 1, sym__directive_body_with_parameter, - [105913] = 5, + [106273] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -151461,10 +152042,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3828), 1, sym__directive_body_with_parameter, - [105929] = 5, + [106289] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -151472,10 +152053,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3829), 1, sym__directive_body_with_parameter, - [105945] = 5, + [106305] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -151483,10 +152064,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3830), 1, sym__directive_body_with_parameter, - [105961] = 5, + [106321] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -151494,10 +152075,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3362), 1, sym__directive_body_with_parameter, - [105977] = 5, + [106337] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -151505,10 +152086,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3363), 1, sym__directive_body_with_parameter, - [105993] = 5, + [106353] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -151516,10 +152097,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3833), 1, sym__directive_body_with_parameter, - [106009] = 5, + [106369] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -151527,10 +152108,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3834), 1, sym__directive_body_with_parameter, - [106025] = 5, + [106385] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -151538,10 +152119,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3842), 1, sym__directive_body_with_parameter, - [106041] = 5, + [106401] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -151549,10 +152130,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3659), 1, sym__if_statement_directive_body, - [106057] = 5, + [106417] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -151560,10 +152141,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3683), 1, sym__directive_body_with_parameter, - [106073] = 5, + [106433] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -151571,10 +152152,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3364), 1, sym__directive_body_with_parameter, - [106089] = 5, + [106449] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -151582,10 +152163,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3843), 1, sym__directive_body_with_parameter, - [106105] = 5, + [106465] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -151593,10 +152174,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3844), 1, sym__directive_body_with_parameter, - [106121] = 5, + [106481] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -151604,10 +152185,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3365), 1, sym__if_statement_directive_body, - [106137] = 5, + [106497] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -151615,10 +152196,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3684), 1, sym__directive_body_with_parameter, - [106153] = 5, + [106513] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -151626,10 +152207,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3845), 1, sym__directive_body_with_parameter, - [106169] = 5, + [106529] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -151637,10 +152218,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3846), 1, sym__directive_body_with_parameter, - [106185] = 5, + [106545] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -151648,10 +152229,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3847), 1, sym__directive_body_with_parameter, - [106201] = 5, + [106561] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -151659,10 +152240,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3848), 1, sym__directive_body_with_parameter, - [106217] = 5, + [106577] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -151670,10 +152251,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3366), 1, sym__if_statement_directive_body, - [106233] = 5, + [106593] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -151681,10 +152262,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3849), 1, sym__if_statement_directive_body, - [106249] = 5, + [106609] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -151692,10 +152273,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3850), 1, sym__if_statement_directive_body, - [106265] = 5, + [106625] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -151703,10 +152284,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3851), 1, sym__if_statement_directive_body, - [106281] = 5, + [106641] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -151714,10 +152295,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3852), 1, sym__if_statement_directive_body, - [106297] = 5, + [106657] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -151725,10 +152306,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3853), 1, sym__if_statement_directive_body, - [106313] = 5, + [106673] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -151736,10 +152317,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3319), 1, sym__directive_body_with_parameter, - [106329] = 5, + [106689] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -151747,10 +152328,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3343), 1, sym__if_statement_directive_body, - [106345] = 5, + [106705] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -151758,10 +152339,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3858), 1, sym__if_statement_directive_body, - [106361] = 5, + [106721] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -151769,10 +152350,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3859), 1, sym__if_statement_directive_body, - [106377] = 5, + [106737] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -151780,10 +152361,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3860), 1, sym__if_statement_directive_body, - [106393] = 5, + [106753] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -151791,10 +152372,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3861), 1, sym__directive_body_with_parameter, - [106409] = 5, + [106769] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -151802,10 +152383,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3862), 1, sym__directive_body_with_parameter, - [106425] = 5, + [106785] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -151813,10 +152394,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3342), 1, sym__if_statement_directive_body, - [106441] = 5, + [106801] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -151824,10 +152405,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3863), 1, sym__directive_body_with_parameter, - [106457] = 5, + [106817] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -151835,10 +152416,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3864), 1, sym__directive_body_with_parameter, - [106473] = 5, + [106833] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -151846,10 +152427,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3865), 1, sym__directive_body_with_parameter, - [106489] = 5, + [106849] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -151857,10 +152438,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3868), 1, sym__directive_body_with_parameter, - [106505] = 5, + [106865] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -151868,10 +152449,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3869), 1, sym__directive_body_with_parameter, - [106521] = 5, + [106881] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -151879,10 +152460,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3881), 1, sym__directive_body_with_parameter, - [106537] = 5, + [106897] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -151890,10 +152471,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3882), 1, sym__directive_body_with_parameter, - [106553] = 5, + [106913] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -151901,10 +152482,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3341), 1, sym__if_statement_directive_body, - [106569] = 5, + [106929] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -151912,10 +152493,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3883), 1, sym__directive_body_with_parameter, - [106585] = 5, + [106945] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -151923,10 +152504,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3340), 1, sym__if_statement_directive_body, - [106601] = 5, + [106961] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -151934,10 +152515,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3884), 1, sym__directive_body_with_parameter, - [106617] = 5, + [106977] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -151945,10 +152526,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3885), 1, sym__directive_body_with_parameter, - [106633] = 5, + [106993] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -151956,10 +152537,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3886), 1, sym__directive_body_with_parameter, - [106649] = 5, + [107009] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -151967,10 +152548,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3411), 1, sym__directive_body_with_parameter, - [106665] = 5, + [107025] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -151978,10 +152559,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3367), 1, sym__if_statement_directive_body, - [106681] = 5, + [107041] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -151989,10 +152570,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3888), 1, sym__if_statement_directive_body, - [106697] = 5, + [107057] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -152000,10 +152581,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3605), 1, sym__directive_body_with_parameter, - [106713] = 5, + [107073] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -152011,10 +152592,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3711), 1, sym__directive_body_with_parameter, - [106729] = 5, + [107089] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -152022,10 +152603,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3394), 1, sym__if_statement_directive_body, - [106745] = 5, + [107105] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -152033,10 +152614,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3889), 1, sym__if_statement_directive_body, - [106761] = 5, + [107121] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -152044,10 +152625,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3890), 1, sym__if_statement_directive_body, - [106777] = 5, + [107137] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -152055,10 +152636,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3891), 1, sym__if_statement_directive_body, - [106793] = 5, + [107153] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -152066,10 +152647,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3339), 1, sym__directive_body_with_parameter, - [106809] = 5, + [107169] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -152077,10 +152658,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3892), 1, sym__if_statement_directive_body, - [106825] = 5, + [107185] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -152088,10 +152669,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3897), 1, sym__if_statement_directive_body, - [106841] = 5, + [107201] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -152099,10 +152680,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3898), 1, sym__if_statement_directive_body, - [106857] = 5, + [107217] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -152110,10 +152691,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3899), 1, sym__if_statement_directive_body, - [106873] = 5, + [107233] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -152121,10 +152702,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3900), 1, sym__directive_body_with_parameter, - [106889] = 5, + [107249] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -152132,10 +152713,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3901), 1, sym__directive_body_with_parameter, - [106905] = 5, + [107265] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -152143,10 +152724,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3902), 1, sym__directive_body_with_parameter, - [106921] = 5, + [107281] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -152154,10 +152735,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3903), 1, sym__directive_body_with_parameter, - [106937] = 5, + [107297] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -152165,10 +152746,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3904), 1, sym__directive_body_with_parameter, - [106953] = 5, + [107313] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -152176,10 +152757,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3907), 1, sym__directive_body_with_parameter, - [106969] = 5, + [107329] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -152187,10 +152768,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3908), 1, sym__directive_body_with_parameter, - [106985] = 5, + [107345] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -152198,10 +152779,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3916), 1, sym__directive_body_with_parameter, - [107001] = 5, + [107361] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -152209,10 +152790,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3917), 1, sym__directive_body_with_parameter, - [107017] = 5, + [107377] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -152220,10 +152801,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3918), 1, sym__directive_body_with_parameter, - [107033] = 5, + [107393] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -152231,10 +152812,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3919), 1, sym__directive_body_with_parameter, - [107049] = 5, + [107409] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -152242,10 +152823,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3920), 1, sym__directive_body_with_parameter, - [107065] = 5, + [107425] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -152253,10 +152834,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3921), 1, sym__directive_body_with_parameter, - [107081] = 5, + [107441] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -152264,10 +152845,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3922), 1, sym__directive_body_with_parameter, - [107097] = 5, + [107457] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -152275,10 +152856,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3395), 1, sym__if_statement_directive_body, - [107113] = 5, + [107473] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -152286,10 +152867,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3923), 1, sym__if_statement_directive_body, - [107129] = 5, + [107489] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -152297,10 +152878,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3924), 1, sym__if_statement_directive_body, - [107145] = 5, + [107505] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -152308,10 +152889,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3925), 1, sym__if_statement_directive_body, - [107161] = 5, + [107521] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -152319,10 +152900,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3338), 1, sym__directive_body_with_parameter, - [107177] = 5, + [107537] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -152330,10 +152911,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3926), 1, sym__if_statement_directive_body, - [107193] = 5, + [107553] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -152341,10 +152922,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3927), 1, sym__if_statement_directive_body, - [107209] = 5, + [107569] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -152352,10 +152933,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3932), 1, sym__if_statement_directive_body, - [107225] = 5, + [107585] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -152363,10 +152944,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3933), 1, sym__if_statement_directive_body, - [107241] = 5, + [107601] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -152374,10 +152955,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3934), 1, sym__if_statement_directive_body, - [107257] = 5, + [107617] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -152385,10 +152966,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3935), 1, sym__directive_body_with_parameter, - [107273] = 5, + [107633] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -152396,10 +152977,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3936), 1, sym__directive_body_with_parameter, - [107289] = 5, + [107649] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -152407,10 +152988,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3337), 1, sym__directive_body_with_parameter, - [107305] = 5, + [107665] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -152418,10 +152999,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3937), 1, sym__directive_body_with_parameter, - [107321] = 5, + [107681] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -152429,10 +153010,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3287), 1, sym__directive_body_with_parameter, - [107337] = 5, + [107697] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -152440,10 +153021,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3938), 1, sym__directive_body_with_parameter, - [107353] = 5, + [107713] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -152451,10 +153032,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3939), 1, sym__directive_body_with_parameter, - [107369] = 5, + [107729] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -152462,10 +153043,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3942), 1, sym__directive_body_with_parameter, - [107385] = 5, + [107745] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -152473,10 +153054,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3943), 1, sym__directive_body_with_parameter, - [107401] = 5, + [107761] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -152484,10 +153065,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3944), 1, sym__directive_body_with_parameter, - [107417] = 5, + [107777] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -152495,10 +153076,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3945), 1, sym__directive_body_with_parameter, - [107433] = 5, + [107793] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -152506,10 +153087,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3398), 1, sym__if_statement_directive_body, - [107449] = 5, + [107809] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -152517,10 +153098,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3399), 1, sym__if_statement_directive_body, - [107465] = 5, + [107825] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -152528,10 +153109,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3946), 1, sym__directive_body_with_parameter, - [107481] = 5, + [107841] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -152539,10 +153120,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3947), 1, sym__directive_body_with_parameter, - [107497] = 5, + [107857] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -152550,10 +153131,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3948), 1, sym__directive_body_with_parameter, - [107513] = 5, + [107873] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -152561,10 +153142,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3949), 1, sym__directive_body_with_parameter, - [107529] = 5, + [107889] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -152572,10 +153153,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3335), 1, sym__directive_body_with_parameter, - [107545] = 5, + [107905] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -152583,10 +153164,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3334), 1, sym__directive_body_with_parameter, - [107561] = 5, + [107921] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -152594,10 +153175,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3950), 1, sym__directive_body_with_parameter, - [107577] = 5, + [107937] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -152605,10 +153186,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3432), 1, sym__if_statement_directive_body, - [107593] = 5, + [107953] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -152616,10 +153197,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3401), 1, sym__directive_body_with_parameter, - [107609] = 5, + [107969] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -152627,10 +153208,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3402), 1, sym__directive_body_with_parameter, - [107625] = 5, + [107985] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -152638,10 +153219,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3951), 1, sym__if_statement_directive_body, - [107641] = 5, + [108001] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -152649,10 +153230,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3952), 1, sym__if_statement_directive_body, - [107657] = 5, + [108017] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -152660,10 +153241,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3953), 1, sym__if_statement_directive_body, - [107673] = 5, + [108033] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -152671,10 +153252,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3954), 1, sym__if_statement_directive_body, - [107689] = 5, + [108049] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -152682,20 +153263,20 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3955), 1, sym__if_statement_directive_body, - [107705] = 4, - ACTIONS(6795), 1, + [108065] = 4, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7132), 1, + ACTIONS(7297), 1, anon_sym_LPAREN2, STATE(2952), 1, sym_comment, - ACTIONS(7130), 2, + ACTIONS(7295), 2, anon_sym_RPAREN, aux_sym_parameter_token1, - [107719] = 5, + [108079] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -152703,10 +153284,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3959), 1, sym__if_statement_directive_body, - [107735] = 5, + [108095] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -152714,10 +153295,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3960), 1, sym__if_statement_directive_body, - [107751] = 5, + [108111] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -152725,10 +153306,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3961), 1, sym__if_statement_directive_body, - [107767] = 5, + [108127] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -152736,10 +153317,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3962), 1, sym__directive_body_with_parameter, - [107783] = 5, + [108143] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -152747,10 +153328,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3963), 1, sym__directive_body_with_parameter, - [107799] = 5, + [108159] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -152758,10 +153339,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3403), 1, sym__directive_body_with_parameter, - [107815] = 5, + [108175] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -152769,10 +153350,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3964), 1, sym__directive_body_with_parameter, - [107831] = 5, + [108191] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -152780,10 +153361,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3965), 1, sym__directive_body_with_parameter, - [107847] = 5, + [108207] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -152791,10 +153372,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3966), 1, sym__directive_body_with_parameter, - [107863] = 5, + [108223] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -152802,10 +153383,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3967), 1, sym__directive_body_with_parameter, - [107879] = 5, + [108239] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -152813,10 +153394,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3968), 1, sym__directive_body_with_parameter, - [107895] = 5, + [108255] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -152824,10 +153405,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3333), 1, sym__directive_body_with_parameter, - [107911] = 5, + [108271] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -152835,10 +153416,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3969), 1, sym__directive_body_with_parameter, - [107927] = 5, + [108287] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -152846,10 +153427,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3970), 1, sym__directive_body_with_parameter, - [107943] = 5, + [108303] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -152857,10 +153438,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3971), 1, sym__directive_body_with_parameter, - [107959] = 5, + [108319] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -152868,10 +153449,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3972), 1, sym__directive_body_with_parameter, - [107975] = 5, + [108335] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -152879,10 +153460,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3973), 1, sym__directive_body_with_parameter, - [107991] = 5, + [108351] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -152890,10 +153471,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3974), 1, sym__directive_body_with_parameter, - [108007] = 5, + [108367] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -152901,10 +153482,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3975), 1, sym__directive_body_with_parameter, - [108023] = 5, + [108383] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -152912,10 +153493,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3325), 1, sym__directive_body_with_parameter, - [108039] = 5, + [108399] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -152923,10 +153504,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3324), 1, sym__directive_body_with_parameter, - [108055] = 5, + [108415] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -152934,10 +153515,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3321), 1, sym__directive_body_with_parameter, - [108071] = 5, + [108431] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -152945,10 +153526,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3404), 1, sym__directive_body_with_parameter, - [108087] = 5, + [108447] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -152956,10 +153537,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3976), 1, sym__if_statement_directive_body, - [108103] = 5, + [108463] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -152967,10 +153548,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3977), 1, sym__if_statement_directive_body, - [108119] = 5, + [108479] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -152978,10 +153559,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3978), 1, sym__if_statement_directive_body, - [108135] = 5, + [108495] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -152989,10 +153570,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3979), 1, sym__if_statement_directive_body, - [108151] = 5, + [108511] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -153000,10 +153581,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3980), 1, sym__if_statement_directive_body, - [108167] = 5, + [108527] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -153011,10 +153592,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3405), 1, sym__directive_body_with_parameter, - [108183] = 5, + [108543] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -153022,10 +153603,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3406), 1, sym__directive_body_with_parameter, - [108199] = 5, + [108559] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -153033,10 +153614,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3407), 1, sym__directive_body_with_parameter, - [108215] = 5, + [108575] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -153044,10 +153625,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3320), 1, sym__directive_body_with_parameter, - [108231] = 5, + [108591] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -153055,10 +153636,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3435), 1, sym__directive_body_with_parameter, - [108247] = 5, + [108607] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -153066,10 +153647,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3880), 1, sym__if_statement_directive_body, - [108263] = 5, + [108623] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -153077,10 +153658,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3653), 1, sym__if_statement_directive_body, - [108279] = 5, + [108639] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -153088,10 +153669,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3940), 1, sym__if_statement_directive_body, - [108295] = 5, + [108655] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -153099,10 +153680,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3928), 1, sym__directive_body_with_parameter, - [108311] = 5, + [108671] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -153110,10 +153691,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3915), 1, sym__directive_body_with_parameter, - [108327] = 5, + [108687] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -153121,10 +153702,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3914), 1, sym__directive_body_with_parameter, - [108343] = 5, + [108703] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -153132,10 +153713,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3913), 1, sym__directive_body_with_parameter, - [108359] = 5, + [108719] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -153143,10 +153724,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3912), 1, sym__directive_body_with_parameter, - [108375] = 5, + [108735] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -153154,10 +153735,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3911), 1, sym__directive_body_with_parameter, - [108391] = 5, + [108751] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -153165,10 +153746,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3910), 1, sym__directive_body_with_parameter, - [108407] = 5, + [108767] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -153176,10 +153757,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3909), 1, sym__directive_body_with_parameter, - [108423] = 5, + [108783] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -153187,10 +153768,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3906), 1, sym__directive_body_with_parameter, - [108439] = 5, + [108799] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -153198,10 +153779,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3905), 1, sym__directive_body_with_parameter, - [108455] = 5, + [108815] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -153209,10 +153790,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3893), 1, sym__directive_body_with_parameter, - [108471] = 5, + [108831] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -153220,10 +153801,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3856), 1, sym__directive_body_with_parameter, - [108487] = 5, + [108847] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -153231,10 +153812,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3879), 1, sym__directive_body_with_parameter, - [108503] = 5, + [108863] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -153242,10 +153823,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3878), 1, sym__directive_body_with_parameter, - [108519] = 5, + [108879] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -153253,10 +153834,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3436), 1, sym__directive_body_with_parameter, - [108535] = 5, + [108895] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -153264,10 +153845,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3877), 1, sym__if_statement_directive_body, - [108551] = 5, + [108911] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -153275,10 +153856,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3876), 1, sym__if_statement_directive_body, - [108567] = 5, + [108927] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -153286,10 +153867,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3875), 1, sym__if_statement_directive_body, - [108583] = 5, + [108943] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -153297,10 +153878,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3874), 1, sym__if_statement_directive_body, - [108599] = 5, + [108959] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -153308,10 +153889,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3873), 1, sym__if_statement_directive_body, - [108615] = 5, + [108975] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -153319,10 +153900,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3299), 1, sym__directive_body_with_parameter, - [108631] = 5, + [108991] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -153330,19 +153911,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3318), 1, sym__directive_body_with_parameter, - [108647] = 3, + [109007] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(3011), 1, sym_comment, - ACTIONS(7134), 3, + ACTIONS(7299), 3, anon_sym_ATdefault, anon_sym_ATendswitch, anon_sym_ATcase, - [108659] = 5, + [109019] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -153350,10 +153931,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3317), 1, sym__directive_body_with_parameter, - [108675] = 5, + [109035] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -153361,10 +153942,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3867), 1, sym__if_statement_directive_body, - [108691] = 5, + [109051] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -153372,10 +153953,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3866), 1, sym__if_statement_directive_body, - [108707] = 5, + [109067] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -153383,10 +153964,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3854), 1, sym__if_statement_directive_body, - [108723] = 5, + [109083] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -153394,10 +153975,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3841), 1, sym__directive_body_with_parameter, - [108739] = 5, + [109099] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -153405,10 +153986,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3840), 1, sym__directive_body_with_parameter, - [108755] = 5, + [109115] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -153416,10 +153997,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3316), 1, sym__if_statement_directive_body, - [108771] = 5, + [109131] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -153427,10 +154008,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3839), 1, sym__directive_body_with_parameter, - [108787] = 5, + [109147] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -153438,10 +154019,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3315), 1, sym__if_statement_directive_body, - [108803] = 5, + [109163] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -153449,10 +154030,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3838), 1, sym__directive_body_with_parameter, - [108819] = 5, + [109179] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -153460,10 +154041,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3837), 1, sym__directive_body_with_parameter, - [108835] = 5, + [109195] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -153471,10 +154052,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3870), 1, sym__directive_body_with_parameter, - [108851] = 5, + [109211] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -153482,10 +154063,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3835), 1, sym__directive_body_with_parameter, - [108867] = 5, + [109227] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -153493,10 +154074,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3832), 1, sym__directive_body_with_parameter, - [108883] = 5, + [109243] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -153504,10 +154085,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3831), 1, sym__directive_body_with_parameter, - [108899] = 5, + [109259] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -153515,10 +154096,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3437), 1, sym__directive_body_with_parameter, - [108915] = 5, + [109275] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -153526,10 +154107,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3438), 1, sym__directive_body_with_parameter, - [108931] = 5, + [109291] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -153537,10 +154118,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3819), 1, sym__directive_body_with_parameter, - [108947] = 5, + [109307] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -153548,10 +154129,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3806), 1, sym__directive_body_with_parameter, - [108963] = 5, + [109323] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -153559,10 +154140,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3805), 1, sym__directive_body_with_parameter, - [108979] = 5, + [109339] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -153570,10 +154151,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3804), 1, sym__directive_body_with_parameter, - [108995] = 5, + [109355] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -153581,10 +154162,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3314), 1, sym__if_statement_directive_body, - [109011] = 5, + [109371] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -153592,10 +154173,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3685), 1, sym__directive_body_with_parameter, - [109027] = 5, + [109387] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -153603,10 +154184,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3803), 1, sym__directive_body_with_parameter, - [109043] = 5, + [109403] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -153614,10 +154195,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3439), 1, sym__directive_body_with_parameter, - [109059] = 5, + [109419] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -153625,10 +154206,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3440), 1, sym__directive_body_with_parameter, - [109075] = 5, + [109435] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -153636,10 +154217,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3802), 1, sym__if_statement_directive_body, - [109091] = 5, + [109451] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -153647,10 +154228,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3801), 1, sym__if_statement_directive_body, - [109107] = 5, + [109467] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -153658,10 +154239,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3800), 1, sym__if_statement_directive_body, - [109123] = 5, + [109483] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -153669,10 +154250,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3799), 1, sym__if_statement_directive_body, - [109139] = 5, + [109499] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -153680,10 +154261,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3798), 1, sym__if_statement_directive_body, - [109155] = 5, + [109515] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -153691,10 +154272,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3346), 1, sym__directive_body_with_parameter, - [109171] = 5, + [109531] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -153702,10 +154283,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3442), 1, sym__if_statement_directive_body, - [109187] = 5, + [109547] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -153713,10 +154294,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3792), 1, sym__if_statement_directive_body, - [109203] = 5, + [109563] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -153724,10 +154305,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3780), 1, sym__if_statement_directive_body, - [109219] = 5, + [109579] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -153735,10 +154316,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3767), 1, sym__if_statement_directive_body, - [109235] = 5, + [109595] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -153746,10 +154327,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3766), 1, sym__directive_body_with_parameter, - [109251] = 5, + [109611] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -153757,10 +154338,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3765), 1, sym__directive_body_with_parameter, - [109267] = 5, + [109627] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -153768,10 +154349,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3709), 1, sym__directive_body_with_parameter, - [109283] = 5, + [109643] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -153779,10 +154360,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3764), 1, sym__directive_body_with_parameter, - [109299] = 5, + [109659] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -153790,10 +154371,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3763), 1, sym__directive_body_with_parameter, - [109315] = 5, + [109675] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -153801,10 +154382,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3761), 1, sym__directive_body_with_parameter, - [109331] = 5, + [109691] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -153812,10 +154393,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3760), 1, sym__directive_body_with_parameter, - [109347] = 5, + [109707] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -153823,10 +154404,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3759), 1, sym__directive_body_with_parameter, - [109363] = 5, + [109723] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -153834,10 +154415,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3710), 1, sym__directive_body_with_parameter, - [109379] = 5, + [109739] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -153845,10 +154426,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3756), 1, sym__directive_body_with_parameter, - [109395] = 5, + [109755] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -153856,10 +154437,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3744), 1, sym__directive_body_with_parameter, - [109411] = 5, + [109771] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -153867,10 +154448,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3836), 1, sym__directive_body_with_parameter, - [109427] = 5, + [109787] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -153878,10 +154459,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3730), 1, sym__directive_body_with_parameter, - [109443] = 5, + [109803] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -153889,10 +154470,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3670), 1, sym__directive_body_with_parameter, - [109459] = 5, + [109819] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -153900,10 +154481,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3728), 1, sym__directive_body_with_parameter, - [109475] = 5, + [109835] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -153911,10 +154492,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3727), 1, sym__directive_body_with_parameter, - [109491] = 5, + [109851] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -153922,10 +154503,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3309), 1, sym__if_statement_directive_body, - [109507] = 5, + [109867] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -153933,10 +154514,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3308), 1, sym__if_statement_directive_body, - [109523] = 5, + [109883] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -153944,10 +154525,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3307), 1, sym__if_statement_directive_body, - [109539] = 5, + [109899] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -153955,10 +154536,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3443), 1, sym__if_statement_directive_body, - [109555] = 5, + [109915] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -153966,10 +154547,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3726), 1, sym__if_statement_directive_body, - [109571] = 5, + [109931] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -153977,10 +154558,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3725), 1, sym__if_statement_directive_body, - [109587] = 5, + [109947] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -153988,10 +154569,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3724), 1, sym__if_statement_directive_body, - [109603] = 5, + [109963] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -153999,10 +154580,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3723), 1, sym__if_statement_directive_body, - [109619] = 5, + [109979] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -154010,10 +154591,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3722), 1, sym__if_statement_directive_body, - [109635] = 5, + [109995] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -154021,10 +154602,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3444), 1, sym__if_statement_directive_body, - [109651] = 5, + [110011] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -154032,10 +154613,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3471), 1, sym__if_statement_directive_body, - [109667] = 5, + [110027] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -154043,10 +154624,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3306), 1, sym__if_statement_directive_body, - [109683] = 5, + [110043] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -154054,10 +154635,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3305), 1, sym__if_statement_directive_body, - [109699] = 5, + [110059] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -154065,10 +154646,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3441), 1, sym__if_statement_directive_body, - [109715] = 5, + [110075] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -154076,10 +154657,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3259), 1, sym__if_statement_directive_body, - [109731] = 5, + [110091] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -154087,10 +154668,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3304), 1, sym__directive_body_with_parameter, - [109747] = 5, + [110107] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -154098,10 +154679,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3702), 1, sym__if_statement_directive_body, - [109763] = 5, + [110123] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -154109,10 +154690,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3689), 1, sym__if_statement_directive_body, - [109779] = 5, + [110139] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -154120,10 +154701,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3688), 1, sym__if_statement_directive_body, - [109795] = 5, + [110155] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -154131,10 +154712,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3687), 1, sym__directive_body_with_parameter, - [109811] = 5, + [110171] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -154142,10 +154723,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3686), 1, sym__directive_body_with_parameter, - [109827] = 5, + [110187] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -154153,10 +154734,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3682), 1, sym__directive_body_with_parameter, - [109843] = 5, + [110203] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -154164,10 +154745,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3681), 1, sym__directive_body_with_parameter, - [109859] = 5, + [110219] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -154175,10 +154756,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3680), 1, sym__directive_body_with_parameter, - [109875] = 5, + [110235] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -154186,10 +154767,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3679), 1, sym__directive_body_with_parameter, - [109891] = 5, + [110251] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -154197,10 +154778,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3678), 1, sym__directive_body_with_parameter, - [109907] = 5, + [110267] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -154208,10 +154789,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3664), 1, sym__directive_body_with_parameter, - [109923] = 5, + [110283] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -154219,10 +154800,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3648), 1, sym__directive_body_with_parameter, - [109939] = 5, + [110299] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -154230,10 +154811,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3647), 1, sym__directive_body_with_parameter, - [109955] = 5, + [110315] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -154241,10 +154822,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3646), 1, sym__directive_body_with_parameter, - [109971] = 5, + [110331] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -154252,10 +154833,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3645), 1, sym__directive_body_with_parameter, - [109987] = 5, + [110347] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -154263,10 +154844,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3644), 1, sym__directive_body_with_parameter, - [110003] = 5, + [110363] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -154274,10 +154855,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3731), 1, sym__directive_body_with_parameter, - [110019] = 5, + [110379] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -154285,10 +154866,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3258), 1, sym__if_statement_directive_body, - [110035] = 5, + [110395] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -154296,10 +154877,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3642), 1, sym__if_statement_directive_body, - [110051] = 5, + [110411] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -154307,10 +154888,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3641), 1, sym__if_statement_directive_body, - [110067] = 5, + [110427] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -154318,10 +154899,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3640), 1, sym__if_statement_directive_body, - [110083] = 5, + [110443] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -154329,10 +154910,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3639), 1, sym__if_statement_directive_body, - [110099] = 5, + [110459] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -154340,10 +154921,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3303), 1, sym__directive_body_with_parameter, - [110115] = 5, + [110475] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -154351,19 +154932,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3638), 1, sym__if_statement_directive_body, - [110131] = 3, + [110491] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(3104), 1, sym_comment, - ACTIONS(7136), 3, + ACTIONS(7301), 3, anon_sym_ATdefault, anon_sym_ATendswitch, anon_sym_ATcase, - [110143] = 5, + [110503] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -154371,10 +154952,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3475), 1, sym__if_statement_directive_body, - [110159] = 5, + [110519] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -154382,10 +154963,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3302), 1, sym__directive_body_with_parameter, - [110175] = 5, + [110535] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -154393,10 +154974,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3643), 1, sym__if_statement_directive_body, - [110191] = 5, + [110551] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -154404,10 +154985,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3603), 1, sym__if_statement_directive_body, - [110207] = 5, + [110567] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -154415,10 +154996,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3602), 1, sym__if_statement_directive_body, - [110223] = 5, + [110583] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -154426,10 +155007,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3301), 1, sym__directive_body_with_parameter, - [110239] = 5, + [110599] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -154437,10 +155018,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3557), 1, sym__directive_body_with_parameter, - [110255] = 5, + [110615] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -154448,10 +155029,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3300), 1, sym__directive_body_with_parameter, - [110271] = 5, + [110631] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -154459,10 +155040,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3600), 1, sym__directive_body_with_parameter, - [110287] = 5, + [110647] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -154470,10 +155051,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3599), 1, sym__directive_body_with_parameter, - [110303] = 5, + [110663] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -154481,10 +155062,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3598), 1, sym__directive_body_with_parameter, - [110319] = 5, + [110679] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -154492,10 +155073,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3597), 1, sym__directive_body_with_parameter, - [110335] = 5, + [110695] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -154503,10 +155084,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3596), 1, sym__directive_body_with_parameter, - [110351] = 5, + [110711] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -154514,10 +155095,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3595), 1, sym__directive_body_with_parameter, - [110367] = 5, + [110727] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -154525,10 +155106,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3477), 1, sym__if_statement_directive_body, - [110383] = 5, + [110743] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -154536,10 +155117,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3478), 1, sym__if_statement_directive_body, - [110399] = 5, + [110759] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -154547,10 +155128,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3567), 1, sym__directive_body_with_parameter, - [110415] = 5, + [110775] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -154558,10 +155139,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3566), 1, sym__directive_body_with_parameter, - [110431] = 5, + [110791] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -154569,10 +155150,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3565), 1, sym__directive_body_with_parameter, - [110447] = 5, + [110807] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -154580,10 +155161,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3564), 1, sym__directive_body_with_parameter, - [110463] = 5, + [110823] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -154591,10 +155172,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3276), 1, sym__directive_body_with_parameter, - [110479] = 5, + [110839] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -154602,10 +155183,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3563), 1, sym__directive_body_with_parameter, - [110495] = 5, + [110855] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -154613,10 +155194,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3562), 1, sym__directive_body_with_parameter, - [110511] = 5, + [110871] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -154624,10 +155205,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3561), 1, sym__directive_body_with_parameter, - [110527] = 5, + [110887] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -154635,10 +155216,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3298), 1, sym__directive_body_with_parameter, - [110543] = 5, + [110903] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, @@ -154646,10 +155227,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3479), 1, sym__directive_body_with_parameter, - [110559] = 5, + [110919] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(374), 1, sym__directive_parameter, @@ -154657,10 +155238,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3480), 1, sym__directive_body_with_parameter, - [110575] = 5, + [110935] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(106), 1, sym__directive_parameter, @@ -154668,10 +155249,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3560), 1, sym__if_statement_directive_body, - [110591] = 5, + [110951] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(93), 1, sym__directive_parameter, @@ -154679,10 +155260,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3559), 1, sym__if_statement_directive_body, - [110607] = 5, + [110967] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -154690,10 +155271,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3558), 1, sym__if_statement_directive_body, - [110623] = 5, + [110983] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -154701,10 +155282,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3474), 1, sym__if_statement_directive_body, - [110639] = 5, + [110999] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(81), 1, sym__directive_parameter, @@ -154712,10 +155293,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3551), 1, sym__if_statement_directive_body, - [110655] = 5, + [111015] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -154723,20 +155304,20 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3277), 1, sym__directive_body_with_parameter, - [110671] = 4, - ACTIONS(6795), 1, + [111031] = 4, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7138), 1, + ACTIONS(7303), 1, anon_sym_LPAREN2, STATE(3138), 1, sym_comment, - ACTIONS(7130), 2, + ACTIONS(7295), 2, aux_sym_parameter_token1, anon_sym_RPAREN2, - [110685] = 5, + [111045] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6369), 1, + ACTIONS(6514), 1, anon_sym_LPAREN, STATE(202), 1, sym__directive_parameter, @@ -154744,10 +155325,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3424), 1, sym__directive_body_with_parameter, - [110701] = 5, + [111061] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(71), 1, sym__directive_parameter, @@ -154755,10 +155336,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3521), 1, sym__if_statement_directive_body, - [110717] = 5, + [111077] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(104), 1, sym__directive_parameter, @@ -154766,10 +155347,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3520), 1, sym__if_statement_directive_body, - [110733] = 5, + [111093] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(364), 1, sym__directive_parameter, @@ -154777,10 +155358,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3481), 1, sym__directive_body_with_parameter, - [110749] = 5, + [111109] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -154788,10 +155369,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3519), 1, sym__if_statement_directive_body, - [110765] = 5, + [111125] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -154799,10 +155380,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3518), 1, sym__directive_body_with_parameter, - [110781] = 5, + [111141] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -154810,10 +155391,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3517), 1, sym__directive_body_with_parameter, - [110797] = 5, + [111157] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -154821,10 +155402,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3516), 1, sym__directive_body_with_parameter, - [110813] = 5, + [111173] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -154832,10 +155413,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3515), 1, sym__directive_body_with_parameter, - [110829] = 5, + [111189] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -154843,10 +155424,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3278), 1, sym__directive_body_with_parameter, - [110845] = 5, + [111205] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -154854,10 +155435,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3514), 1, sym__directive_body_with_parameter, - [110861] = 5, + [111221] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(195), 1, sym__directive_parameter, @@ -154865,10 +155446,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3513), 1, sym__directive_body_with_parameter, - [110877] = 5, + [111237] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(309), 1, sym__directive_parameter, @@ -154876,10 +155457,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3512), 1, sym__directive_body_with_parameter, - [110893] = 5, + [111253] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, @@ -154887,10 +155468,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3485), 1, sym__directive_body_with_parameter, - [110909] = 5, + [111269] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(335), 1, sym__directive_parameter, @@ -154898,10 +155479,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3484), 1, sym__directive_body_with_parameter, - [110925] = 5, + [111285] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(342), 1, sym__directive_parameter, @@ -154909,10 +155490,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3483), 1, sym__directive_body_with_parameter, - [110941] = 5, + [111301] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(355), 1, sym__directive_parameter, @@ -154920,10 +155501,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3482), 1, sym__directive_body_with_parameter, - [110957] = 5, + [111317] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(277), 1, sym__directive_parameter, @@ -154931,10 +155512,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3281), 1, sym__directive_body_with_parameter, - [110973] = 5, + [111333] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(348), 1, sym__directive_parameter, @@ -154942,10 +155523,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3282), 1, sym__directive_body_with_parameter, - [110989] = 5, + [111349] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(418), 1, sym__directive_parameter, @@ -154953,10 +155534,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3283), 1, sym__directive_body_with_parameter, - [111005] = 5, + [111365] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(345), 1, sym__directive_parameter, @@ -154964,10 +155545,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3284), 1, sym__directive_body_with_parameter, - [111021] = 5, + [111381] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, @@ -154975,10 +155556,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3285), 1, sym__directive_body_with_parameter, - [111037] = 5, + [111397] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(80), 1, sym__directive_parameter, @@ -154986,5947 +155567,5947 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3286), 1, sym__if_statement_directive_body, - [111053] = 4, + [111413] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2504), 1, sym__directive_parameter, STATE(3162), 1, sym_comment, - [111066] = 4, + [111426] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(1797), 1, sym__directive_parameter, STATE(3163), 1, sym_comment, - [111079] = 4, + [111439] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6405), 1, + ACTIONS(6550), 1, anon_sym_LPAREN, STATE(2144), 1, sym__directive_parameter, STATE(3164), 1, sym_comment, - [111092] = 4, + [111452] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6377), 1, + ACTIONS(6522), 1, anon_sym_LPAREN, STATE(1855), 1, sym__directive_parameter, STATE(3165), 1, sym_comment, - [111105] = 4, + [111465] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6377), 1, + ACTIONS(6522), 1, anon_sym_LPAREN, STATE(1856), 1, sym__directive_parameter, STATE(3166), 1, sym_comment, - [111118] = 4, + [111478] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2443), 1, sym__directive_parameter, STATE(3167), 1, sym_comment, - [111131] = 4, + [111491] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2396), 1, sym__directive_parameter, STATE(3168), 1, sym_comment, - [111144] = 4, + [111504] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, STATE(1796), 1, sym__directive_parameter, STATE(3169), 1, sym_comment, - [111157] = 3, - ACTIONS(6795), 1, + [111517] = 3, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(3170), 1, sym_comment, - ACTIONS(7142), 2, + ACTIONS(7307), 2, anon_sym_RPAREN, aux_sym_parameter_token1, - [111168] = 4, + [111528] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6117), 1, + ACTIONS(6262), 1, anon_sym_LPAREN, STATE(486), 1, sym__directive_parameter, STATE(3171), 1, sym_comment, - [111181] = 4, + [111541] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2398), 1, sym__directive_parameter, STATE(3172), 1, sym_comment, - [111194] = 3, - ACTIONS(6795), 1, + [111554] = 3, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(3173), 1, sym_comment, - ACTIONS(7144), 2, + ACTIONS(7309), 2, anon_sym_RPAREN, aux_sym_parameter_token1, - [111205] = 4, + [111565] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(1738), 1, sym__directive_parameter, STATE(3174), 1, sym_comment, - [111218] = 3, - ACTIONS(6795), 1, + [111578] = 3, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(3175), 1, sym_comment, - ACTIONS(7130), 2, + ACTIONS(7295), 2, aux_sym_parameter_token1, anon_sym_RPAREN2, - [111229] = 4, + [111589] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(1261), 1, sym__directive_parameter, STATE(3176), 1, sym_comment, - [111242] = 3, - ACTIONS(6795), 1, + [111602] = 3, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(3177), 1, sym_comment, - ACTIONS(7144), 2, + ACTIONS(7309), 2, aux_sym_parameter_token1, anon_sym_RPAREN2, - [111253] = 4, + [111613] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6381), 1, + ACTIONS(6526), 1, anon_sym_LPAREN, STATE(1737), 1, sym__directive_parameter, STATE(3178), 1, sym_comment, - [111266] = 4, + [111626] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2487), 1, sym__directive_parameter, STATE(3179), 1, sym_comment, - [111279] = 4, + [111639] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6405), 1, + ACTIONS(6550), 1, anon_sym_LPAREN, STATE(2145), 1, sym__directive_parameter, STATE(3180), 1, sym_comment, - [111292] = 4, + [111652] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(1204), 1, sym__directive_parameter, STATE(3181), 1, sym_comment, - [111305] = 4, + [111665] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6125), 1, + ACTIONS(6270), 1, anon_sym_LPAREN, STATE(849), 1, sym__directive_parameter, STATE(3182), 1, sym_comment, - [111318] = 4, + [111678] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2502), 1, sym__directive_parameter, STATE(3183), 1, sym_comment, - [111331] = 4, + [111691] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(1679), 1, sym__directive_parameter, STATE(3184), 1, sym_comment, - [111344] = 4, + [111704] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6383), 1, + ACTIONS(6528), 1, anon_sym_LPAREN, STATE(1678), 1, sym__directive_parameter, STATE(3185), 1, sym_comment, - [111357] = 4, + [111717] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2412), 1, sym__directive_parameter, STATE(3186), 1, sym_comment, - [111370] = 3, - ACTIONS(6795), 1, + [111730] = 3, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(3187), 1, sym_comment, - ACTIONS(7130), 2, + ACTIONS(7295), 2, anon_sym_RPAREN, aux_sym_parameter_token1, - [111381] = 3, - ACTIONS(6795), 1, + [111741] = 3, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(3188), 1, sym_comment, - ACTIONS(7146), 2, + ACTIONS(7311), 2, anon_sym_RPAREN, aux_sym_parameter_token1, - [111392] = 4, + [111752] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(1620), 1, sym__directive_parameter, STATE(3189), 1, sym_comment, - [111405] = 4, + [111765] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6385), 1, + ACTIONS(6530), 1, anon_sym_LPAREN, STATE(1619), 1, sym__directive_parameter, STATE(3190), 1, sym_comment, - [111418] = 4, + [111778] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2390), 1, sym__directive_parameter, STATE(3191), 1, sym_comment, - [111431] = 4, + [111791] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6125), 1, + ACTIONS(6270), 1, anon_sym_LPAREN, STATE(875), 1, sym__directive_parameter, STATE(3192), 1, sym_comment, - [111444] = 4, + [111804] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6123), 1, + ACTIONS(6268), 1, anon_sym_LPAREN, STATE(585), 1, sym__directive_parameter, STATE(3193), 1, sym_comment, - [111457] = 4, + [111817] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6397), 1, + ACTIONS(6542), 1, anon_sym_LPAREN, STATE(1262), 1, sym__directive_parameter, STATE(3194), 1, sym_comment, - [111470] = 4, + [111830] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6123), 1, + ACTIONS(6268), 1, anon_sym_LPAREN, STATE(574), 1, sym__directive_parameter, STATE(3195), 1, sym_comment, - [111483] = 4, + [111843] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2423), 1, sym__directive_parameter, STATE(3196), 1, sym_comment, - [111496] = 4, + [111856] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2424), 1, sym__directive_parameter, STATE(3197), 1, sym_comment, - [111509] = 4, + [111869] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(1561), 1, sym__directive_parameter, STATE(3198), 1, sym_comment, - [111522] = 4, + [111882] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6387), 1, + ACTIONS(6532), 1, anon_sym_LPAREN, STATE(1560), 1, sym__directive_parameter, STATE(3199), 1, sym_comment, - [111535] = 4, + [111895] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2458), 1, sym__directive_parameter, STATE(3200), 1, sym_comment, - [111548] = 4, + [111908] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2411), 1, sym__directive_parameter, STATE(3201), 1, sym_comment, - [111561] = 4, + [111921] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(1502), 1, sym__directive_parameter, STATE(3202), 1, sym_comment, - [111574] = 3, - ACTIONS(6795), 1, + [111934] = 3, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(3203), 1, sym_comment, - ACTIONS(7142), 2, + ACTIONS(7307), 2, aux_sym_parameter_token1, anon_sym_RPAREN2, - [111585] = 4, + [111945] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6389), 1, + ACTIONS(6534), 1, anon_sym_LPAREN, STATE(1501), 1, sym__directive_parameter, STATE(3204), 1, sym_comment, - [111598] = 4, + [111958] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6403), 1, + ACTIONS(6548), 1, anon_sym_LPAREN, STATE(2138), 1, sym__directive_parameter, STATE(3205), 1, sym_comment, - [111611] = 4, + [111971] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6355), 1, + ACTIONS(6500), 1, anon_sym_LPAREN, STATE(2001), 1, sym__directive_parameter, STATE(3206), 1, sym_comment, - [111624] = 3, - ACTIONS(6795), 1, + [111984] = 3, + ACTIONS(6960), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, STATE(3207), 1, sym_comment, - ACTIONS(7146), 2, + ACTIONS(7311), 2, aux_sym_parameter_token1, anon_sym_RPAREN2, - [111635] = 4, + [111995] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6399), 1, + ACTIONS(6544), 1, anon_sym_LPAREN, STATE(1205), 1, sym__directive_parameter, STATE(3208), 1, sym_comment, - [111648] = 4, + [112008] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2454), 1, sym__directive_parameter, STATE(3209), 1, sym_comment, - [111661] = 4, + [112021] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2471), 1, sym__directive_parameter, STATE(3210), 1, sym_comment, - [111674] = 4, + [112034] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6369), 1, + ACTIONS(6514), 1, anon_sym_LPAREN, STATE(1914), 1, sym__directive_parameter, STATE(3211), 1, sym_comment, - [111687] = 4, + [112047] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6369), 1, + ACTIONS(6514), 1, anon_sym_LPAREN, STATE(1915), 1, sym__directive_parameter, STATE(3212), 1, sym_comment, - [111700] = 4, + [112060] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6117), 1, + ACTIONS(6262), 1, anon_sym_LPAREN, STATE(487), 1, sym__directive_parameter, STATE(3213), 1, sym_comment, - [111713] = 4, + [112073] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(1443), 1, sym__directive_parameter, STATE(3214), 1, sym_comment, - [111726] = 4, + [112086] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6391), 1, + ACTIONS(6536), 1, anon_sym_LPAREN, STATE(1442), 1, sym__directive_parameter, STATE(3215), 1, sym_comment, - [111739] = 4, + [112099] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2506), 1, sym__directive_parameter, STATE(3216), 1, sym_comment, - [111752] = 4, + [112112] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2500), 1, sym__directive_parameter, STATE(3217), 1, sym_comment, - [111765] = 4, + [112125] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(686), 1, sym__directive_parameter, STATE(3218), 1, sym_comment, - [111778] = 4, + [112138] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6129), 1, + ACTIONS(6274), 1, anon_sym_LPAREN, STATE(687), 1, sym__directive_parameter, STATE(3219), 1, sym_comment, - [111791] = 4, + [112151] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(1148), 1, sym__directive_parameter, STATE(3220), 1, sym_comment, - [111804] = 4, + [112164] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6401), 1, + ACTIONS(6546), 1, anon_sym_LPAREN, STATE(1147), 1, sym__directive_parameter, STATE(3221), 1, sym_comment, - [111817] = 4, + [112177] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6403), 1, + ACTIONS(6548), 1, anon_sym_LPAREN, STATE(2150), 1, sym__directive_parameter, STATE(3222), 1, sym_comment, - [111830] = 4, + [112190] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2492), 1, sym__directive_parameter, STATE(3223), 1, sym_comment, - [111843] = 4, + [112203] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(1319), 1, sym__directive_parameter, STATE(3224), 1, sym_comment, - [111856] = 4, + [112216] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2392), 1, sym__directive_parameter, STATE(3225), 1, sym_comment, - [111869] = 4, + [112229] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6395), 1, + ACTIONS(6540), 1, anon_sym_LPAREN, STATE(1320), 1, sym__directive_parameter, STATE(3226), 1, sym_comment, - [111882] = 4, + [112242] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(2034), 1, sym__directive_parameter, STATE(3227), 1, sym_comment, - [111895] = 4, + [112255] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6325), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, STATE(2033), 1, sym__directive_parameter, STATE(3228), 1, sym_comment, - [111908] = 4, + [112268] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(756), 1, sym__directive_parameter, STATE(3229), 1, sym_comment, - [111921] = 4, + [112281] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6127), 1, + ACTIONS(6272), 1, anon_sym_LPAREN, STATE(757), 1, sym__directive_parameter, STATE(3230), 1, sym_comment, - [111934] = 4, + [112294] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2485), 1, sym__directive_parameter, STATE(3231), 1, sym_comment, - [111947] = 4, + [112307] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2475), 1, sym__directive_parameter, STATE(3232), 1, sym_comment, - [111960] = 4, + [112320] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(823), 1, sym__directive_parameter, STATE(3233), 1, sym_comment, - [111973] = 4, + [112333] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6121), 1, + ACTIONS(6266), 1, anon_sym_LPAREN, STATE(824), 1, sym__directive_parameter, STATE(3234), 1, sym_comment, - [111986] = 4, + [112346] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2420), 1, sym__directive_parameter, STATE(3235), 1, sym_comment, - [111999] = 4, + [112359] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2469), 1, sym__directive_parameter, STATE(3236), 1, sym_comment, - [112012] = 4, + [112372] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(1605), 1, sym__directive_parameter, STATE(3237), 1, sym_comment, - [112025] = 4, + [112385] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6371), 1, + ACTIONS(6516), 1, anon_sym_LPAREN, STATE(1604), 1, sym__directive_parameter, STATE(3238), 1, sym_comment, - [112038] = 4, + [112398] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(890), 1, sym__directive_parameter, STATE(3239), 1, sym_comment, - [112051] = 4, + [112411] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6109), 1, + ACTIONS(6254), 1, anon_sym_LPAREN, STATE(891), 1, sym__directive_parameter, STATE(3240), 1, sym_comment, - [112064] = 4, + [112424] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2457), 1, sym__directive_parameter, STATE(3241), 1, sym_comment, - [112077] = 4, + [112437] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2452), 1, sym__directive_parameter, STATE(3242), 1, sym_comment, - [112090] = 4, + [112450] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(957), 1, sym__directive_parameter, STATE(3243), 1, sym_comment, - [112103] = 4, + [112463] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6111), 1, + ACTIONS(6256), 1, anon_sym_LPAREN, STATE(958), 1, sym__directive_parameter, STATE(3244), 1, sym_comment, - [112116] = 4, + [112476] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2447), 1, sym__directive_parameter, STATE(3245), 1, sym_comment, - [112129] = 4, + [112489] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(1377), 1, sym__directive_parameter, STATE(3246), 1, sym_comment, - [112142] = 4, + [112502] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2402), 1, sym__directive_parameter, STATE(3247), 1, sym_comment, - [112155] = 4, + [112515] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6393), 1, + ACTIONS(6538), 1, anon_sym_LPAREN, STATE(1376), 1, sym__directive_parameter, STATE(3248), 1, sym_comment, - [112168] = 4, + [112528] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(1081), 1, sym__directive_parameter, STATE(3249), 1, sym_comment, - [112181] = 4, + [112541] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6119), 1, + ACTIONS(6264), 1, anon_sym_LPAREN, STATE(1080), 1, sym__directive_parameter, STATE(3250), 1, sym_comment, - [112194] = 4, + [112554] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2460), 1, sym__directive_parameter, STATE(3251), 1, sym_comment, - [112207] = 4, + [112567] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2441), 1, sym__directive_parameter, STATE(3252), 1, sym_comment, - [112220] = 4, + [112580] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6355), 1, + ACTIONS(6500), 1, anon_sym_LPAREN, STATE(2000), 1, sym__directive_parameter, STATE(3253), 1, sym_comment, - [112233] = 4, + [112593] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7140), 1, + ACTIONS(7305), 1, anon_sym_LPAREN, STATE(2429), 1, sym__directive_parameter, STATE(3254), 1, sym_comment, - [112246] = 4, + [112606] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(1018), 1, sym__directive_parameter, STATE(3255), 1, sym_comment, - [112259] = 4, + [112619] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6131), 1, + ACTIONS(6276), 1, anon_sym_LPAREN, STATE(1017), 1, sym__directive_parameter, STATE(3256), 1, sym_comment, - [112272] = 3, + [112632] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7148), 1, + ACTIONS(7313), 1, anon_sym_ATendforelse, STATE(3257), 1, sym_comment, - [112282] = 3, + [112642] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7150), 1, + ACTIONS(7315), 1, anon_sym_ATendunless, STATE(3258), 1, sym_comment, - [112292] = 3, + [112652] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7152), 1, + ACTIONS(7317), 1, anon_sym_ATendisset, STATE(3259), 1, sym_comment, - [112302] = 3, + [112662] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7154), 1, + ACTIONS(7319), 1, anon_sym_ATendempty, STATE(3260), 1, sym_comment, - [112312] = 3, + [112672] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7156), 1, + ACTIONS(7321), 1, anon_sym_ATendauth, STATE(3261), 1, sym_comment, - [112322] = 3, + [112682] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7158), 1, + ACTIONS(7323), 1, anon_sym_ATendguest, STATE(3262), 1, sym_comment, - [112332] = 3, + [112692] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7160), 1, + ACTIONS(7325), 1, anon_sym_ATendfragment, STATE(3263), 1, sym_comment, - [112342] = 3, + [112702] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7162), 1, + ACTIONS(7327), 1, anon_sym_ATendenv, STATE(3264), 1, sym_comment, - [112352] = 3, + [112712] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7164), 1, + ACTIONS(7329), 1, anon_sym_ATendif, STATE(3265), 1, sym_comment, - [112362] = 3, + [112722] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7166), 1, + ACTIONS(7331), 1, anon_sym_ATendif, STATE(3266), 1, sym_comment, - [112372] = 3, + [112732] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7168), 1, + ACTIONS(7333), 1, anon_sym_ATenderror, STATE(3267), 1, sym_comment, - [112382] = 3, + [112742] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7170), 1, + ACTIONS(7335), 1, aux_sym__custom_token3, STATE(3268), 1, sym_comment, - [112392] = 3, + [112752] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7172), 1, + ACTIONS(7337), 1, anon_sym_ATendPushOnce, STATE(3269), 1, sym_comment, - [112402] = 3, + [112762] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7174), 1, + ACTIONS(7339), 1, anon_sym_ATendfor, STATE(3270), 1, sym_comment, - [112412] = 3, + [112772] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7176), 1, + ACTIONS(7341), 1, anon_sym_ATendforeach, STATE(3271), 1, sym_comment, - [112422] = 3, + [112782] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7178), 1, + ACTIONS(7343), 1, anon_sym_ATendforelse, STATE(3272), 1, sym_comment, - [112432] = 3, + [112792] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7180), 1, + ACTIONS(7345), 1, anon_sym_ATendwhile, STATE(3273), 1, sym_comment, - [112442] = 3, + [112802] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7182), 1, + ACTIONS(7347), 1, anon_sym_ATendpersist, STATE(3274), 1, sym_comment, - [112452] = 3, + [112812] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7184), 1, + ACTIONS(7349), 1, anon_sym_ATendteleport, STATE(3275), 1, sym_comment, - [112462] = 3, + [112822] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7186), 1, + ACTIONS(7351), 1, anon_sym_ATendvolt, STATE(3276), 1, sym_comment, - [112472] = 3, + [112832] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7188), 1, + ACTIONS(7353), 1, anon_sym_ATendfragment, STATE(3277), 1, sym_comment, - [112482] = 3, + [112842] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7190), 1, + ACTIONS(7355), 1, anon_sym_ATendsection, STATE(3278), 1, sym_comment, - [112492] = 3, + [112852] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7192), 1, + ACTIONS(7357), 1, anon_sym_ATendpush, STATE(3279), 1, sym_comment, - [112502] = 3, + [112862] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7194), 1, + ACTIONS(7359), 1, anon_sym_ATendsection, STATE(3280), 1, sym_comment, - [112512] = 3, + [112872] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7196), 1, + ACTIONS(7361), 1, anon_sym_ATendpush, STATE(3281), 1, sym_comment, - [112522] = 3, + [112882] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7198), 1, + ACTIONS(7363), 1, anon_sym_ATendPushOnce, STATE(3282), 1, sym_comment, - [112532] = 3, + [112892] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7200), 1, + ACTIONS(7365), 1, anon_sym_ATendPushIf, STATE(3283), 1, sym_comment, - [112542] = 3, + [112902] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7202), 1, + ACTIONS(7367), 1, anon_sym_ATendprepend, STATE(3284), 1, sym_comment, - [112552] = 3, + [112912] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7204), 1, + ACTIONS(7369), 1, anon_sym_ATendPrependOnce, STATE(3285), 1, sym_comment, - [112562] = 3, + [112922] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7206), 1, + ACTIONS(7371), 1, anon_sym_ATendif, STATE(3286), 1, sym_comment, - [112572] = 3, + [112932] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7208), 1, + ACTIONS(7373), 1, anon_sym_ATendwhile, STATE(3287), 1, sym_comment, - [112582] = 3, + [112942] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7210), 1, + ACTIONS(7375), 1, anon_sym_ATendPushIf, STATE(3288), 1, sym_comment, - [112592] = 3, + [112952] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7212), 1, + ACTIONS(7377), 1, anon_sym_ATendprepend, STATE(3289), 1, sym_comment, - [112602] = 3, + [112962] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7214), 1, + ACTIONS(7379), 1, anon_sym_ATendPrependOnce, STATE(3290), 1, sym_comment, - [112612] = 3, + [112972] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7216), 1, + ACTIONS(7381), 1, anon_sym_ATendif, STATE(3291), 1, sym_comment, - [112622] = 3, + [112982] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7218), 1, + ACTIONS(7383), 1, anon_sym_ATendunless, STATE(3292), 1, sym_comment, - [112632] = 3, + [112992] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7220), 1, + ACTIONS(7385), 1, anon_sym_ATendisset, STATE(3293), 1, sym_comment, - [112642] = 3, + [113002] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7222), 1, + ACTIONS(7387), 1, anon_sym_ATendempty, STATE(3294), 1, sym_comment, - [112652] = 3, + [113012] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7224), 1, + ACTIONS(7389), 1, anon_sym_ATendauth, STATE(3295), 1, sym_comment, - [112662] = 3, + [113022] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7226), 1, + ACTIONS(7391), 1, anon_sym_ATendguest, STATE(3296), 1, sym_comment, - [112672] = 3, + [113032] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7228), 1, + ACTIONS(7393), 1, anon_sym_ATendif, STATE(3297), 1, sym_comment, - [112682] = 3, + [113042] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7230), 1, + ACTIONS(7395), 1, anon_sym_ATendvolt, STATE(3298), 1, sym_comment, - [112692] = 3, + [113052] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7232), 1, + ACTIONS(7397), 1, anon_sym_ATendteleport, STATE(3299), 1, sym_comment, - [112702] = 3, + [113062] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7234), 1, + ACTIONS(7399), 1, anon_sym_ATendpersist, STATE(3300), 1, sym_comment, - [112712] = 3, + [113072] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7236), 1, + ACTIONS(7401), 1, anon_sym_ATendwhile, STATE(3301), 1, sym_comment, - [112722] = 3, + [113082] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7238), 1, + ACTIONS(7403), 1, anon_sym_ATendforelse, STATE(3302), 1, sym_comment, - [112732] = 3, + [113092] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7240), 1, + ACTIONS(7405), 1, anon_sym_ATendforeach, STATE(3303), 1, sym_comment, - [112742] = 3, + [113102] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7242), 1, + ACTIONS(7407), 1, anon_sym_ATendfor, STATE(3304), 1, sym_comment, - [112752] = 3, + [113112] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7244), 1, + ACTIONS(7409), 1, aux_sym__custom_token3, STATE(3305), 1, sym_comment, - [112762] = 3, + [113122] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7246), 1, + ACTIONS(7411), 1, anon_sym_ATenderror, STATE(3306), 1, sym_comment, - [112772] = 3, + [113132] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7248), 1, + ACTIONS(7413), 1, anon_sym_ATendif, STATE(3307), 1, sym_comment, - [112782] = 3, + [113142] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7250), 1, + ACTIONS(7415), 1, anon_sym_ATendif, STATE(3308), 1, sym_comment, - [112792] = 3, + [113152] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7252), 1, + ACTIONS(7417), 1, anon_sym_ATendenv, STATE(3309), 1, sym_comment, - [112802] = 3, + [113162] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7254), 1, + ACTIONS(7419), 1, anon_sym_ATendif, STATE(3310), 1, sym_comment, - [112812] = 3, + [113172] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7256), 1, + ACTIONS(7421), 1, anon_sym_ATendguest, STATE(3311), 1, sym_comment, - [112822] = 3, + [113182] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7258), 1, + ACTIONS(7423), 1, anon_sym_ATendauth, STATE(3312), 1, sym_comment, - [112832] = 3, + [113192] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7260), 1, + ACTIONS(7425), 1, anon_sym_ATendempty, STATE(3313), 1, sym_comment, - [112842] = 3, + [113202] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7262), 1, + ACTIONS(7427), 1, anon_sym_ATendisset, STATE(3314), 1, sym_comment, - [112852] = 3, + [113212] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7264), 1, + ACTIONS(7429), 1, anon_sym_ATendunless, STATE(3315), 1, sym_comment, - [112862] = 3, + [113222] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7266), 1, + ACTIONS(7431), 1, anon_sym_ATendif, STATE(3316), 1, sym_comment, - [112872] = 3, + [113232] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7268), 1, + ACTIONS(7433), 1, anon_sym_ATendPrependOnce, STATE(3317), 1, sym_comment, - [112882] = 3, + [113242] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7270), 1, + ACTIONS(7435), 1, anon_sym_ATendprepend, STATE(3318), 1, sym_comment, - [112892] = 3, + [113252] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7272), 1, + ACTIONS(7437), 1, anon_sym_ATendPushIf, STATE(3319), 1, sym_comment, - [112902] = 3, + [113262] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7274), 1, + ACTIONS(7439), 1, anon_sym_ATendPushOnce, STATE(3320), 1, sym_comment, - [112912] = 3, + [113272] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7276), 1, + ACTIONS(7441), 1, anon_sym_ATendpush, STATE(3321), 1, sym_comment, - [112922] = 3, + [113282] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7278), 1, + ACTIONS(7443), 1, anon_sym_ATenderror, STATE(3322), 1, sym_comment, - [112932] = 3, + [113292] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7280), 1, + ACTIONS(7445), 1, aux_sym__custom_token3, STATE(3323), 1, sym_comment, - [112942] = 3, + [113302] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7282), 1, + ACTIONS(7447), 1, anon_sym_ATendsection, STATE(3324), 1, sym_comment, - [112952] = 3, + [113312] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7284), 1, + ACTIONS(7449), 1, anon_sym_ATendfragment, STATE(3325), 1, sym_comment, - [112962] = 3, + [113322] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7286), 1, + ACTIONS(7451), 1, anon_sym_ATendfor, STATE(3326), 1, sym_comment, - [112972] = 3, + [113332] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7288), 1, + ACTIONS(7453), 1, anon_sym_ATendforeach, STATE(3327), 1, sym_comment, - [112982] = 3, + [113342] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7290), 1, + ACTIONS(7455), 1, anon_sym_ATendforelse, STATE(3328), 1, sym_comment, - [112992] = 3, + [113352] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7292), 1, + ACTIONS(7457), 1, anon_sym_ATendwhile, STATE(3329), 1, sym_comment, - [113002] = 3, + [113362] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7294), 1, + ACTIONS(7459), 1, anon_sym_ATendpersist, STATE(3330), 1, sym_comment, - [113012] = 3, + [113372] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7296), 1, + ACTIONS(7461), 1, anon_sym_ATendteleport, STATE(3331), 1, sym_comment, - [113022] = 3, + [113382] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7298), 1, + ACTIONS(7463), 1, anon_sym_ATendvolt, STATE(3332), 1, sym_comment, - [113032] = 3, + [113392] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7300), 1, + ACTIONS(7465), 1, anon_sym_ATendvolt, STATE(3333), 1, sym_comment, - [113042] = 3, + [113402] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7302), 1, + ACTIONS(7467), 1, anon_sym_ATendteleport, STATE(3334), 1, sym_comment, - [113052] = 3, + [113412] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7304), 1, + ACTIONS(7469), 1, anon_sym_ATendpersist, STATE(3335), 1, sym_comment, - [113062] = 3, + [113422] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7306), 1, + ACTIONS(7471), 1, anon_sym_ATendauth, STATE(3336), 1, sym_comment, - [113072] = 3, + [113432] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7308), 1, + ACTIONS(7473), 1, anon_sym_ATendforelse, STATE(3337), 1, sym_comment, - [113082] = 3, + [113442] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7310), 1, + ACTIONS(7475), 1, anon_sym_ATendforeach, STATE(3338), 1, sym_comment, - [113092] = 3, + [113452] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7312), 1, + ACTIONS(7477), 1, anon_sym_ATendfor, STATE(3339), 1, sym_comment, - [113102] = 3, + [113462] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7314), 1, + ACTIONS(7479), 1, aux_sym__custom_token3, STATE(3340), 1, sym_comment, - [113112] = 3, + [113472] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7316), 1, + ACTIONS(7481), 1, anon_sym_ATenderror, STATE(3341), 1, sym_comment, - [113122] = 3, + [113482] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7318), 1, + ACTIONS(7483), 1, anon_sym_ATendif, STATE(3342), 1, sym_comment, - [113132] = 3, + [113492] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7320), 1, + ACTIONS(7485), 1, anon_sym_ATendif, STATE(3343), 1, sym_comment, - [113142] = 3, + [113502] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7322), 1, + ACTIONS(7487), 1, anon_sym_ATendenv, STATE(3344), 1, sym_comment, - [113152] = 3, + [113512] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7324), 1, + ACTIONS(7489), 1, anon_sym_ATendguest, STATE(3345), 1, sym_comment, - [113162] = 3, + [113522] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7326), 1, + ACTIONS(7491), 1, anon_sym_ATendPrependOnce, STATE(3346), 1, sym_comment, - [113172] = 3, + [113532] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7328), 1, + ACTIONS(7493), 1, anon_sym_ATendempty, STATE(3347), 1, sym_comment, - [113182] = 3, + [113542] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7330), 1, + ACTIONS(7495), 1, anon_sym_ATendisset, STATE(3348), 1, sym_comment, - [113192] = 3, + [113552] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7332), 1, + ACTIONS(7497), 1, anon_sym_ATendunless, STATE(3349), 1, sym_comment, - [113202] = 3, + [113562] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7334), 1, + ACTIONS(7499), 1, anon_sym_ATendif, STATE(3350), 1, sym_comment, - [113212] = 3, + [113572] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7336), 1, + ACTIONS(7501), 1, anon_sym_ATendPrependOnce, STATE(3351), 1, sym_comment, - [113222] = 3, + [113582] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7338), 1, + ACTIONS(7503), 1, anon_sym_ATendprepend, STATE(3352), 1, sym_comment, - [113232] = 3, + [113592] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7340), 1, + ACTIONS(7505), 1, anon_sym_ATendPushIf, STATE(3353), 1, sym_comment, - [113242] = 3, + [113602] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7342), 1, + ACTIONS(7507), 1, anon_sym_ATendPushOnce, STATE(3354), 1, sym_comment, - [113252] = 3, + [113612] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7344), 1, + ACTIONS(7509), 1, anon_sym_ATendpush, STATE(3355), 1, sym_comment, - [113262] = 3, + [113622] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7346), 1, + ACTIONS(7511), 1, anon_sym_ATendsection, STATE(3356), 1, sym_comment, - [113272] = 3, + [113632] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7348), 1, + ACTIONS(7513), 1, anon_sym_ATendfragment, STATE(3357), 1, sym_comment, - [113282] = 3, + [113642] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7350), 1, + ACTIONS(7515), 1, anon_sym_ATendfragment, STATE(3358), 1, sym_comment, - [113292] = 3, + [113652] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7352), 1, + ACTIONS(7517), 1, anon_sym_ATendsection, STATE(3359), 1, sym_comment, - [113302] = 3, + [113662] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7354), 1, + ACTIONS(7519), 1, anon_sym_ATendpush, STATE(3360), 1, sym_comment, - [113312] = 3, + [113672] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7356), 1, + ACTIONS(7521), 1, anon_sym_ATendPushOnce, STATE(3361), 1, sym_comment, - [113322] = 3, + [113682] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7358), 1, + ACTIONS(7523), 1, anon_sym_ATendPushIf, STATE(3362), 1, sym_comment, - [113332] = 3, + [113692] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7360), 1, + ACTIONS(7525), 1, anon_sym_ATendprepend, STATE(3363), 1, sym_comment, - [113342] = 3, + [113702] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7362), 1, + ACTIONS(7527), 1, anon_sym_ATendPrependOnce, STATE(3364), 1, sym_comment, - [113352] = 3, + [113712] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7364), 1, + ACTIONS(7529), 1, anon_sym_ATendif, STATE(3365), 1, sym_comment, - [113362] = 3, + [113722] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7366), 1, + ACTIONS(7531), 1, anon_sym_ATendunless, STATE(3366), 1, sym_comment, - [113372] = 3, + [113732] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7368), 1, + ACTIONS(7533), 1, anon_sym_ATendisset, STATE(3367), 1, sym_comment, - [113382] = 3, + [113742] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7370), 1, + ACTIONS(7535), 1, anon_sym_ATendempty, STATE(3368), 1, sym_comment, - [113392] = 3, + [113752] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7372), 1, + ACTIONS(7537), 1, anon_sym_ATendauth, STATE(3369), 1, sym_comment, - [113402] = 3, + [113762] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7374), 1, + ACTIONS(7539), 1, anon_sym_ATendvolt, STATE(3370), 1, sym_comment, - [113412] = 3, + [113772] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7376), 1, + ACTIONS(7541), 1, anon_sym_ATendteleport, STATE(3371), 1, sym_comment, - [113422] = 3, + [113782] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7378), 1, + ACTIONS(7543), 1, anon_sym_ATendpersist, STATE(3372), 1, sym_comment, - [113432] = 3, + [113792] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7380), 1, + ACTIONS(7545), 1, anon_sym_ATendwhile, STATE(3373), 1, sym_comment, - [113442] = 3, + [113802] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7382), 1, + ACTIONS(7547), 1, anon_sym_ATendforelse, STATE(3374), 1, sym_comment, - [113452] = 3, + [113812] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7384), 1, + ACTIONS(7549), 1, anon_sym_ATendforeach, STATE(3375), 1, sym_comment, - [113462] = 3, + [113822] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7386), 1, + ACTIONS(7551), 1, anon_sym_ATendfor, STATE(3376), 1, sym_comment, - [113472] = 3, + [113832] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7388), 1, + ACTIONS(7553), 1, aux_sym__custom_token3, STATE(3377), 1, sym_comment, - [113482] = 3, + [113842] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7390), 1, + ACTIONS(7555), 1, anon_sym_ATenderror, STATE(3378), 1, sym_comment, - [113492] = 3, + [113852] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7392), 1, + ACTIONS(7557), 1, anon_sym_ATendif, STATE(3379), 1, sym_comment, - [113502] = 3, + [113862] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7394), 1, + ACTIONS(7559), 1, anon_sym_ATendif, STATE(3380), 1, sym_comment, - [113512] = 3, + [113872] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7396), 1, + ACTIONS(7561), 1, anon_sym_ATendenv, STATE(3381), 1, sym_comment, - [113522] = 3, + [113882] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7398), 1, + ACTIONS(7563), 1, anon_sym_ATendguest, STATE(3382), 1, sym_comment, - [113532] = 3, + [113892] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7400), 1, + ACTIONS(7565), 1, anon_sym_ATendguest, STATE(3383), 1, sym_comment, - [113542] = 3, + [113902] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7402), 1, + ACTIONS(7567), 1, anon_sym_ATendauth, STATE(3384), 1, sym_comment, - [113552] = 3, + [113912] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7404), 1, + ACTIONS(7569), 1, anon_sym_ATendempty, STATE(3385), 1, sym_comment, - [113562] = 3, + [113922] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7406), 1, + ACTIONS(7571), 1, anon_sym_ATendisset, STATE(3386), 1, sym_comment, - [113572] = 3, + [113932] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7408), 1, + ACTIONS(7573), 1, anon_sym_ATendunless, STATE(3387), 1, sym_comment, - [113582] = 3, + [113942] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7410), 1, + ACTIONS(7575), 1, anon_sym_ATendif, STATE(3388), 1, sym_comment, - [113592] = 3, + [113952] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7412), 1, + ACTIONS(7577), 1, anon_sym_ATendPrependOnce, STATE(3389), 1, sym_comment, - [113602] = 3, + [113962] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7414), 1, + ACTIONS(7579), 1, anon_sym_ATendprepend, STATE(3390), 1, sym_comment, - [113612] = 3, + [113972] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7416), 1, + ACTIONS(7581), 1, anon_sym_ATendPushIf, STATE(3391), 1, sym_comment, - [113622] = 3, + [113982] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7418), 1, + ACTIONS(7583), 1, anon_sym_ATendPushOnce, STATE(3392), 1, sym_comment, - [113632] = 3, + [113992] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7420), 1, + ACTIONS(7585), 1, anon_sym_ATendpush, STATE(3393), 1, sym_comment, - [113642] = 3, + [114002] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7422), 1, + ACTIONS(7587), 1, anon_sym_ATendenv, STATE(3394), 1, sym_comment, - [113652] = 3, + [114012] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7424), 1, + ACTIONS(7589), 1, anon_sym_ATendif, STATE(3395), 1, sym_comment, - [113662] = 3, + [114022] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7426), 1, + ACTIONS(7591), 1, anon_sym_ATendsection, STATE(3396), 1, sym_comment, - [113672] = 3, + [114032] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7428), 1, + ACTIONS(7593), 1, anon_sym_ATendfragment, STATE(3397), 1, sym_comment, - [113682] = 3, + [114042] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7430), 1, + ACTIONS(7595), 1, anon_sym_ATendif, STATE(3398), 1, sym_comment, - [113692] = 3, + [114052] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7432), 1, + ACTIONS(7597), 1, anon_sym_ATenderror, STATE(3399), 1, sym_comment, - [113702] = 3, + [114062] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7434), 1, + ACTIONS(7599), 1, anon_sym_ATendenv, STATE(3400), 1, sym_comment, - [113712] = 3, + [114072] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7436), 1, + ACTIONS(7601), 1, anon_sym_ATendfor, STATE(3401), 1, sym_comment, - [113722] = 3, + [114082] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7438), 1, + ACTIONS(7603), 1, anon_sym_ATendforeach, STATE(3402), 1, sym_comment, - [113732] = 3, + [114092] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7440), 1, + ACTIONS(7605), 1, anon_sym_ATendforelse, STATE(3403), 1, sym_comment, - [113742] = 3, + [114102] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7442), 1, + ACTIONS(7607), 1, anon_sym_ATendwhile, STATE(3404), 1, sym_comment, - [113752] = 3, + [114112] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7444), 1, + ACTIONS(7609), 1, anon_sym_ATendpersist, STATE(3405), 1, sym_comment, - [113762] = 3, + [114122] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7446), 1, + ACTIONS(7611), 1, anon_sym_ATendteleport, STATE(3406), 1, sym_comment, - [113772] = 3, + [114132] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7448), 1, + ACTIONS(7613), 1, anon_sym_ATendvolt, STATE(3407), 1, sym_comment, - [113782] = 3, + [114142] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7450), 1, + ACTIONS(7615), 1, anon_sym_ATendvolt, STATE(3408), 1, sym_comment, - [113792] = 3, + [114152] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7452), 1, + ACTIONS(7617), 1, anon_sym_ATendteleport, STATE(3409), 1, sym_comment, - [113802] = 3, + [114162] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7454), 1, + ACTIONS(7619), 1, anon_sym_ATendpersist, STATE(3410), 1, sym_comment, - [113812] = 3, + [114172] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7456), 1, + ACTIONS(7621), 1, anon_sym_ATendwhile, STATE(3411), 1, sym_comment, - [113822] = 3, + [114182] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7458), 1, + ACTIONS(7623), 1, anon_sym_ATendforelse, STATE(3412), 1, sym_comment, - [113832] = 3, + [114192] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7460), 1, + ACTIONS(7625), 1, anon_sym_ATendforeach, STATE(3413), 1, sym_comment, - [113842] = 3, + [114202] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7462), 1, + ACTIONS(7627), 1, anon_sym_ATendfor, STATE(3414), 1, sym_comment, - [113852] = 3, + [114212] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7464), 1, + ACTIONS(7629), 1, aux_sym__custom_token3, STATE(3415), 1, sym_comment, - [113862] = 3, + [114222] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7466), 1, + ACTIONS(7631), 1, anon_sym_ATenderror, STATE(3416), 1, sym_comment, - [113872] = 3, + [114232] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7468), 1, + ACTIONS(7633), 1, anon_sym_ATendif, STATE(3417), 1, sym_comment, - [113882] = 3, + [114242] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7470), 1, + ACTIONS(7635), 1, anon_sym_ATendif, STATE(3418), 1, sym_comment, - [113892] = 3, + [114252] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7472), 1, + ACTIONS(7637), 1, anon_sym_ATendenv, STATE(3419), 1, sym_comment, - [113902] = 3, + [114262] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7474), 1, + ACTIONS(7639), 1, anon_sym_ATendguest, STATE(3420), 1, sym_comment, - [113912] = 3, + [114272] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7476), 1, + ACTIONS(7641), 1, anon_sym_ATendauth, STATE(3421), 1, sym_comment, - [113922] = 3, + [114282] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7478), 1, + ACTIONS(7643), 1, anon_sym_ATendempty, STATE(3422), 1, sym_comment, - [113932] = 3, + [114292] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7480), 1, + ACTIONS(7645), 1, anon_sym_ATendisset, STATE(3423), 1, sym_comment, - [113942] = 3, + [114302] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7482), 1, + ACTIONS(7647), 1, anon_sym_ATbreak, STATE(3424), 1, sym_comment, - [113952] = 3, + [114312] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7484), 1, + ACTIONS(7649), 1, anon_sym_ATendunless, STATE(3425), 1, sym_comment, - [113962] = 3, + [114322] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7486), 1, + ACTIONS(7651), 1, anon_sym_ATendif, STATE(3426), 1, sym_comment, - [113972] = 3, + [114332] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7488), 1, + ACTIONS(7653), 1, anon_sym_ATendPrependOnce, STATE(3427), 1, sym_comment, - [113982] = 3, + [114342] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7490), 1, + ACTIONS(7655), 1, anon_sym_ATendprepend, STATE(3428), 1, sym_comment, - [113992] = 3, + [114352] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7492), 1, + ACTIONS(7657), 1, anon_sym_ATendPushIf, STATE(3429), 1, sym_comment, - [114002] = 3, + [114362] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7494), 1, + ACTIONS(7659), 1, anon_sym_ATendPushOnce, STATE(3430), 1, sym_comment, - [114012] = 3, + [114372] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7496), 1, + ACTIONS(7661), 1, anon_sym_ATendpush, STATE(3431), 1, sym_comment, - [114022] = 3, + [114382] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7498), 1, + ACTIONS(7663), 1, aux_sym__custom_token3, STATE(3432), 1, sym_comment, - [114032] = 3, + [114392] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7500), 1, + ACTIONS(7665), 1, anon_sym_ATendsection, STATE(3433), 1, sym_comment, - [114042] = 3, + [114402] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7502), 1, + ACTIONS(7667), 1, anon_sym_ATendfragment, STATE(3434), 1, sym_comment, - [114052] = 3, + [114412] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7504), 1, + ACTIONS(7669), 1, anon_sym_ATendfragment, STATE(3435), 1, sym_comment, - [114062] = 3, + [114422] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7506), 1, + ACTIONS(7671), 1, anon_sym_ATendsection, STATE(3436), 1, sym_comment, - [114072] = 3, + [114432] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7508), 1, + ACTIONS(7673), 1, anon_sym_ATendpush, STATE(3437), 1, sym_comment, - [114082] = 3, + [114442] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7510), 1, + ACTIONS(7675), 1, anon_sym_ATendPushOnce, STATE(3438), 1, sym_comment, - [114092] = 3, + [114452] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7512), 1, + ACTIONS(7677), 1, anon_sym_ATendPushIf, STATE(3439), 1, sym_comment, - [114102] = 3, + [114462] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7514), 1, + ACTIONS(7679), 1, anon_sym_ATendprepend, STATE(3440), 1, sym_comment, - [114112] = 3, + [114472] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7516), 1, + ACTIONS(7681), 1, anon_sym_ATendif, STATE(3441), 1, sym_comment, - [114122] = 3, + [114482] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7518), 1, + ACTIONS(7683), 1, anon_sym_ATendif, STATE(3442), 1, sym_comment, - [114132] = 3, + [114492] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7520), 1, + ACTIONS(7685), 1, anon_sym_ATendunless, STATE(3443), 1, sym_comment, - [114142] = 3, + [114502] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7522), 1, + ACTIONS(7687), 1, anon_sym_ATendisset, STATE(3444), 1, sym_comment, - [114152] = 3, + [114512] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7524), 1, + ACTIONS(7689), 1, anon_sym_ATendempty, STATE(3445), 1, sym_comment, - [114162] = 3, + [114522] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7526), 1, + ACTIONS(7691), 1, anon_sym_ATendvolt, STATE(3446), 1, sym_comment, - [114172] = 3, + [114532] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7528), 1, + ACTIONS(7693), 1, anon_sym_ATendteleport, STATE(3447), 1, sym_comment, - [114182] = 3, + [114542] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7530), 1, + ACTIONS(7695), 1, anon_sym_ATendpersist, STATE(3448), 1, sym_comment, - [114192] = 3, + [114552] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7532), 1, + ACTIONS(7697), 1, anon_sym_ATendwhile, STATE(3449), 1, sym_comment, - [114202] = 3, + [114562] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7534), 1, + ACTIONS(7699), 1, anon_sym_ATendforelse, STATE(3450), 1, sym_comment, - [114212] = 3, + [114572] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7536), 1, + ACTIONS(7701), 1, anon_sym_ATendforeach, STATE(3451), 1, sym_comment, - [114222] = 3, + [114582] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7538), 1, + ACTIONS(7703), 1, anon_sym_ATendfor, STATE(3452), 1, sym_comment, - [114232] = 3, + [114592] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7540), 1, + ACTIONS(7705), 1, aux_sym__custom_token3, STATE(3453), 1, sym_comment, - [114242] = 3, + [114602] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7542), 1, + ACTIONS(7707), 1, anon_sym_ATenderror, STATE(3454), 1, sym_comment, - [114252] = 3, + [114612] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7544), 1, + ACTIONS(7709), 1, anon_sym_ATendif, STATE(3455), 1, sym_comment, - [114262] = 3, + [114622] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7546), 1, + ACTIONS(7711), 1, anon_sym_ATendif, STATE(3456), 1, sym_comment, - [114272] = 3, + [114632] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7548), 1, + ACTIONS(7713), 1, anon_sym_ATendenv, STATE(3457), 1, sym_comment, - [114282] = 3, + [114642] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7550), 1, + ACTIONS(7715), 1, anon_sym_ATendauth, STATE(3458), 1, sym_comment, - [114292] = 3, + [114652] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7552), 1, + ACTIONS(7717), 1, anon_sym_ATendguest, STATE(3459), 1, sym_comment, - [114302] = 3, + [114662] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7554), 1, + ACTIONS(7719), 1, anon_sym_ATendauth, STATE(3460), 1, sym_comment, - [114312] = 3, + [114672] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7556), 1, + ACTIONS(7721), 1, anon_sym_ATendempty, STATE(3461), 1, sym_comment, - [114322] = 3, + [114682] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7558), 1, + ACTIONS(7723), 1, anon_sym_ATendisset, STATE(3462), 1, sym_comment, - [114332] = 3, + [114692] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7560), 1, + ACTIONS(7725), 1, anon_sym_ATendunless, STATE(3463), 1, sym_comment, - [114342] = 3, + [114702] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7562), 1, + ACTIONS(7727), 1, anon_sym_ATendif, STATE(3464), 1, sym_comment, - [114352] = 3, + [114712] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7564), 1, + ACTIONS(7729), 1, anon_sym_ATendPrependOnce, STATE(3465), 1, sym_comment, - [114362] = 3, + [114722] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7566), 1, + ACTIONS(7731), 1, anon_sym_ATendprepend, STATE(3466), 1, sym_comment, - [114372] = 3, + [114732] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7568), 1, + ACTIONS(7733), 1, anon_sym_ATendPushIf, STATE(3467), 1, sym_comment, - [114382] = 3, + [114742] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7570), 1, + ACTIONS(7735), 1, anon_sym_ATendPushOnce, STATE(3468), 1, sym_comment, - [114392] = 3, + [114752] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7572), 1, + ACTIONS(7737), 1, anon_sym_ATendpush, STATE(3469), 1, sym_comment, - [114402] = 3, + [114762] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7574), 1, + ACTIONS(7739), 1, anon_sym_ATendguest, STATE(3470), 1, sym_comment, - [114412] = 3, + [114772] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7576), 1, + ACTIONS(7741), 1, anon_sym_ATendenv, STATE(3471), 1, sym_comment, - [114422] = 3, + [114782] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7578), 1, + ACTIONS(7743), 1, anon_sym_ATendsection, STATE(3472), 1, sym_comment, - [114432] = 3, + [114792] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7580), 1, + ACTIONS(7745), 1, anon_sym_ATendfragment, STATE(3473), 1, sym_comment, - [114442] = 3, + [114802] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7582), 1, + ACTIONS(7747), 1, anon_sym_ATendif, STATE(3474), 1, sym_comment, - [114452] = 3, + [114812] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7584), 1, + ACTIONS(7749), 1, anon_sym_ATendif, STATE(3475), 1, sym_comment, - [114462] = 3, + [114822] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7586), 1, + ACTIONS(7751), 1, anon_sym_ATendif, STATE(3476), 1, sym_comment, - [114472] = 3, + [114832] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7588), 1, + ACTIONS(7753), 1, anon_sym_ATenderror, STATE(3477), 1, sym_comment, - [114482] = 3, + [114842] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7590), 1, + ACTIONS(7755), 1, aux_sym__custom_token3, STATE(3478), 1, sym_comment, - [114492] = 3, + [114852] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7592), 1, + ACTIONS(7757), 1, anon_sym_ATendfor, STATE(3479), 1, sym_comment, - [114502] = 3, + [114862] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7594), 1, + ACTIONS(7759), 1, anon_sym_ATendforeach, STATE(3480), 1, sym_comment, - [114512] = 3, + [114872] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7596), 1, + ACTIONS(7761), 1, anon_sym_ATendforelse, STATE(3481), 1, sym_comment, - [114522] = 3, + [114882] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7598), 1, + ACTIONS(7763), 1, anon_sym_ATendwhile, STATE(3482), 1, sym_comment, - [114532] = 3, + [114892] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7600), 1, + ACTIONS(7765), 1, anon_sym_ATendpersist, STATE(3483), 1, sym_comment, - [114542] = 3, + [114902] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7602), 1, + ACTIONS(7767), 1, anon_sym_ATendteleport, STATE(3484), 1, sym_comment, - [114552] = 3, + [114912] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7604), 1, + ACTIONS(7769), 1, anon_sym_ATendvolt, STATE(3485), 1, sym_comment, - [114562] = 3, + [114922] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7606), 1, + ACTIONS(7771), 1, anon_sym_ATendvolt, STATE(3486), 1, sym_comment, - [114572] = 3, + [114932] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7608), 1, + ACTIONS(7773), 1, anon_sym_ATendteleport, STATE(3487), 1, sym_comment, - [114582] = 3, + [114942] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7610), 1, + ACTIONS(7775), 1, anon_sym_ATendpersist, STATE(3488), 1, sym_comment, - [114592] = 3, + [114952] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7612), 1, + ACTIONS(7777), 1, anon_sym_ATendwhile, STATE(3489), 1, sym_comment, - [114602] = 3, + [114962] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7614), 1, + ACTIONS(7779), 1, anon_sym_ATendforelse, STATE(3490), 1, sym_comment, - [114612] = 3, + [114972] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7616), 1, + ACTIONS(7781), 1, anon_sym_ATendforeach, STATE(3491), 1, sym_comment, - [114622] = 3, + [114982] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7618), 1, + ACTIONS(7783), 1, anon_sym_ATendfor, STATE(3492), 1, sym_comment, - [114632] = 3, + [114992] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7620), 1, + ACTIONS(7785), 1, aux_sym__custom_token3, STATE(3493), 1, sym_comment, - [114642] = 3, + [115002] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7622), 1, + ACTIONS(7787), 1, anon_sym_ATenderror, STATE(3494), 1, sym_comment, - [114652] = 3, + [115012] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7624), 1, + ACTIONS(7789), 1, anon_sym_ATendif, STATE(3495), 1, sym_comment, - [114662] = 3, + [115022] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7626), 1, + ACTIONS(7791), 1, anon_sym_ATendif, STATE(3496), 1, sym_comment, - [114672] = 3, + [115032] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7628), 1, + ACTIONS(7793), 1, anon_sym_ATendenv, STATE(3497), 1, sym_comment, - [114682] = 3, + [115042] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7630), 1, + ACTIONS(7795), 1, anon_sym_ATendguest, STATE(3498), 1, sym_comment, - [114692] = 3, + [115052] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7632), 1, + ACTIONS(7797), 1, anon_sym_ATendauth, STATE(3499), 1, sym_comment, - [114702] = 3, + [115062] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7634), 1, + ACTIONS(7799), 1, anon_sym_ATendempty, STATE(3500), 1, sym_comment, - [114712] = 3, + [115072] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7636), 1, + ACTIONS(7801), 1, anon_sym_ATendisset, STATE(3501), 1, sym_comment, - [114722] = 3, + [115082] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7638), 1, + ACTIONS(7803), 1, anon_sym_ATendunless, STATE(3502), 1, sym_comment, - [114732] = 3, + [115092] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7640), 1, + ACTIONS(7805), 1, anon_sym_ATendvolt, STATE(3503), 1, sym_comment, - [114742] = 3, + [115102] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7642), 1, + ACTIONS(7807), 1, anon_sym_ATendif, STATE(3504), 1, sym_comment, - [114752] = 3, + [115112] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7644), 1, + ACTIONS(7809), 1, anon_sym_ATendPrependOnce, STATE(3505), 1, sym_comment, - [114762] = 3, + [115122] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7646), 1, + ACTIONS(7811), 1, anon_sym_ATendprepend, STATE(3506), 1, sym_comment, - [114772] = 3, + [115132] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7648), 1, + ACTIONS(7813), 1, anon_sym_ATendPushIf, STATE(3507), 1, sym_comment, - [114782] = 3, + [115142] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7650), 1, + ACTIONS(7815), 1, anon_sym_ATendPushOnce, STATE(3508), 1, sym_comment, - [114792] = 3, + [115152] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7652), 1, + ACTIONS(7817), 1, anon_sym_ATendpush, STATE(3509), 1, sym_comment, - [114802] = 3, + [115162] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7654), 1, + ACTIONS(7819), 1, anon_sym_ATendsection, STATE(3510), 1, sym_comment, - [114812] = 3, + [115172] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7656), 1, + ACTIONS(7821), 1, anon_sym_ATendfragment, STATE(3511), 1, sym_comment, - [114822] = 3, + [115182] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7658), 1, + ACTIONS(7823), 1, anon_sym_ATendfragment, STATE(3512), 1, sym_comment, - [114832] = 3, + [115192] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7660), 1, + ACTIONS(7825), 1, anon_sym_ATendsection, STATE(3513), 1, sym_comment, - [114842] = 3, + [115202] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7662), 1, + ACTIONS(7827), 1, anon_sym_ATendpush, STATE(3514), 1, sym_comment, - [114852] = 3, + [115212] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7664), 1, + ACTIONS(7829), 1, anon_sym_ATendPushOnce, STATE(3515), 1, sym_comment, - [114862] = 3, + [115222] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7666), 1, + ACTIONS(7831), 1, anon_sym_ATendPushIf, STATE(3516), 1, sym_comment, - [114872] = 3, + [115232] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7668), 1, + ACTIONS(7833), 1, anon_sym_ATendprepend, STATE(3517), 1, sym_comment, - [114882] = 3, + [115242] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7670), 1, + ACTIONS(7835), 1, anon_sym_ATendPrependOnce, STATE(3518), 1, sym_comment, - [114892] = 3, + [115252] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7672), 1, + ACTIONS(7837), 1, anon_sym_ATendif, STATE(3519), 1, sym_comment, - [114902] = 3, + [115262] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7674), 1, + ACTIONS(7839), 1, anon_sym_ATendunless, STATE(3520), 1, sym_comment, - [114912] = 3, + [115272] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7676), 1, + ACTIONS(7841), 1, anon_sym_ATendisset, STATE(3521), 1, sym_comment, - [114922] = 3, + [115282] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7678), 1, + ACTIONS(7843), 1, anon_sym_ATendempty, STATE(3522), 1, sym_comment, - [114932] = 3, + [115292] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7680), 1, + ACTIONS(7845), 1, anon_sym_ATendvolt, STATE(3523), 1, sym_comment, - [114942] = 3, + [115302] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7682), 1, + ACTIONS(7847), 1, anon_sym_ATendteleport, STATE(3524), 1, sym_comment, - [114952] = 3, + [115312] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7684), 1, + ACTIONS(7849), 1, anon_sym_ATendpersist, STATE(3525), 1, sym_comment, - [114962] = 3, + [115322] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7686), 1, + ACTIONS(7851), 1, anon_sym_ATendwhile, STATE(3526), 1, sym_comment, - [114972] = 3, + [115332] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7688), 1, + ACTIONS(7853), 1, anon_sym_ATendteleport, STATE(3527), 1, sym_comment, - [114982] = 3, + [115342] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7690), 1, + ACTIONS(7855), 1, anon_sym_ATendpersist, STATE(3528), 1, sym_comment, - [114992] = 3, + [115352] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7692), 1, + ACTIONS(7857), 1, anon_sym_ATendwhile, STATE(3529), 1, sym_comment, - [115002] = 3, + [115362] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7694), 1, + ACTIONS(7859), 1, anon_sym_ATendforelse, STATE(3530), 1, sym_comment, - [115012] = 3, + [115372] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7696), 1, + ACTIONS(7861), 1, anon_sym_ATendforeach, STATE(3531), 1, sym_comment, - [115022] = 3, + [115382] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7698), 1, + ACTIONS(7863), 1, anon_sym_ATendfor, STATE(3532), 1, sym_comment, - [115032] = 3, + [115392] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7700), 1, + ACTIONS(7865), 1, aux_sym__custom_token3, STATE(3533), 1, sym_comment, - [115042] = 3, + [115402] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7702), 1, + ACTIONS(7867), 1, anon_sym_ATenderror, STATE(3534), 1, sym_comment, - [115052] = 3, + [115412] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7704), 1, + ACTIONS(7869), 1, anon_sym_ATendif, STATE(3535), 1, sym_comment, - [115062] = 3, + [115422] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7706), 1, + ACTIONS(7871), 1, anon_sym_ATendif, STATE(3536), 1, sym_comment, - [115072] = 3, + [115432] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7708), 1, + ACTIONS(7873), 1, anon_sym_ATendenv, STATE(3537), 1, sym_comment, - [115082] = 3, + [115442] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7710), 1, + ACTIONS(7875), 1, anon_sym_ATendauth, STATE(3538), 1, sym_comment, - [115092] = 3, + [115452] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7712), 1, + ACTIONS(7877), 1, anon_sym_ATendguest, STATE(3539), 1, sym_comment, - [115102] = 3, + [115462] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7714), 1, + ACTIONS(7879), 1, anon_sym_ATendauth, STATE(3540), 1, sym_comment, - [115112] = 3, + [115472] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7716), 1, + ACTIONS(7881), 1, anon_sym_ATendempty, STATE(3541), 1, sym_comment, - [115122] = 3, + [115482] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7718), 1, + ACTIONS(7883), 1, anon_sym_ATendisset, STATE(3542), 1, sym_comment, - [115132] = 3, + [115492] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7720), 1, + ACTIONS(7885), 1, anon_sym_ATendunless, STATE(3543), 1, sym_comment, - [115142] = 3, + [115502] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7722), 1, + ACTIONS(7887), 1, anon_sym_ATendif, STATE(3544), 1, sym_comment, - [115152] = 3, + [115512] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7724), 1, + ACTIONS(7889), 1, anon_sym_ATendPrependOnce, STATE(3545), 1, sym_comment, - [115162] = 3, + [115522] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7726), 1, + ACTIONS(7891), 1, anon_sym_ATendprepend, STATE(3546), 1, sym_comment, - [115172] = 3, + [115532] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7728), 1, + ACTIONS(7893), 1, anon_sym_ATendPushIf, STATE(3547), 1, sym_comment, - [115182] = 3, + [115542] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7730), 1, + ACTIONS(7895), 1, anon_sym_ATendPushOnce, STATE(3548), 1, sym_comment, - [115192] = 3, + [115552] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7732), 1, + ACTIONS(7897), 1, anon_sym_ATendpush, STATE(3549), 1, sym_comment, - [115202] = 3, + [115562] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7734), 1, + ACTIONS(7899), 1, anon_sym_ATendguest, STATE(3550), 1, sym_comment, - [115212] = 3, + [115572] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7736), 1, + ACTIONS(7901), 1, anon_sym_ATendenv, STATE(3551), 1, sym_comment, - [115222] = 3, + [115582] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7738), 1, + ACTIONS(7903), 1, anon_sym_ATendsection, STATE(3552), 1, sym_comment, - [115232] = 3, + [115592] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7740), 1, + ACTIONS(7905), 1, anon_sym_ATendforelse, STATE(3553), 1, sym_comment, - [115242] = 3, + [115602] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7742), 1, + ACTIONS(7907), 1, anon_sym_ATendforeach, STATE(3554), 1, sym_comment, - [115252] = 3, + [115612] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7744), 1, + ACTIONS(7909), 1, anon_sym_ATendfor, STATE(3555), 1, sym_comment, - [115262] = 3, + [115622] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7746), 1, + ACTIONS(7911), 1, anon_sym_ATendfragment, STATE(3556), 1, sym_comment, - [115272] = 3, + [115632] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7748), 1, + ACTIONS(7913), 1, anon_sym_ATendPrependOnce, STATE(3557), 1, sym_comment, - [115282] = 3, + [115642] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7750), 1, + ACTIONS(7915), 1, anon_sym_ATendif, STATE(3558), 1, sym_comment, - [115292] = 3, + [115652] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7752), 1, + ACTIONS(7917), 1, anon_sym_ATenderror, STATE(3559), 1, sym_comment, - [115302] = 3, + [115662] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7754), 1, + ACTIONS(7919), 1, aux_sym__custom_token3, STATE(3560), 1, sym_comment, - [115312] = 3, + [115672] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7756), 1, + ACTIONS(7921), 1, anon_sym_ATendfor, STATE(3561), 1, sym_comment, - [115322] = 3, + [115682] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7758), 1, + ACTIONS(7923), 1, anon_sym_ATendforeach, STATE(3562), 1, sym_comment, - [115332] = 3, + [115692] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7760), 1, + ACTIONS(7925), 1, anon_sym_ATendforelse, STATE(3563), 1, sym_comment, - [115342] = 3, + [115702] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7762), 1, + ACTIONS(7927), 1, anon_sym_ATendwhile, STATE(3564), 1, sym_comment, - [115352] = 3, + [115712] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7764), 1, + ACTIONS(7929), 1, anon_sym_ATendpersist, STATE(3565), 1, sym_comment, - [115362] = 3, + [115722] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7766), 1, + ACTIONS(7931), 1, anon_sym_ATendteleport, STATE(3566), 1, sym_comment, - [115372] = 3, + [115732] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7768), 1, + ACTIONS(7933), 1, anon_sym_ATendvolt, STATE(3567), 1, sym_comment, - [115382] = 3, + [115742] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7770), 1, + ACTIONS(7935), 1, anon_sym_ATendvolt, STATE(3568), 1, sym_comment, - [115392] = 3, + [115752] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7772), 1, + ACTIONS(7937), 1, anon_sym_ATendteleport, STATE(3569), 1, sym_comment, - [115402] = 3, + [115762] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7774), 1, + ACTIONS(7939), 1, anon_sym_ATendpersist, STATE(3570), 1, sym_comment, - [115412] = 3, + [115772] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7776), 1, + ACTIONS(7941), 1, anon_sym_ATendwhile, STATE(3571), 1, sym_comment, - [115422] = 3, + [115782] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7778), 1, + ACTIONS(7943), 1, anon_sym_ATendforelse, STATE(3572), 1, sym_comment, - [115432] = 3, + [115792] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7780), 1, + ACTIONS(7945), 1, anon_sym_ATendforeach, STATE(3573), 1, sym_comment, - [115442] = 3, + [115802] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7782), 1, + ACTIONS(7947), 1, anon_sym_ATendfor, STATE(3574), 1, sym_comment, - [115452] = 3, + [115812] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7784), 1, + ACTIONS(7949), 1, aux_sym__custom_token3, STATE(3575), 1, sym_comment, - [115462] = 3, + [115822] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7786), 1, + ACTIONS(7951), 1, anon_sym_ATenderror, STATE(3576), 1, sym_comment, - [115472] = 3, + [115832] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7788), 1, + ACTIONS(7953), 1, anon_sym_ATendif, STATE(3577), 1, sym_comment, - [115482] = 3, + [115842] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7790), 1, + ACTIONS(7955), 1, anon_sym_ATendif, STATE(3578), 1, sym_comment, - [115492] = 3, + [115852] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7792), 1, + ACTIONS(7957), 1, anon_sym_ATendenv, STATE(3579), 1, sym_comment, - [115502] = 3, + [115862] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7794), 1, + ACTIONS(7959), 1, aux_sym__custom_token3, STATE(3580), 1, sym_comment, - [115512] = 3, + [115872] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7796), 1, + ACTIONS(7961), 1, anon_sym_ATenderror, STATE(3581), 1, sym_comment, - [115522] = 3, + [115882] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7798), 1, + ACTIONS(7963), 1, anon_sym_ATendguest, STATE(3582), 1, sym_comment, - [115532] = 3, + [115892] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7800), 1, + ACTIONS(7965), 1, anon_sym_ATendauth, STATE(3583), 1, sym_comment, - [115542] = 3, + [115902] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7802), 1, + ACTIONS(7967), 1, anon_sym_ATendempty, STATE(3584), 1, sym_comment, - [115552] = 3, + [115912] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7804), 1, + ACTIONS(7969), 1, anon_sym_ATendisset, STATE(3585), 1, sym_comment, - [115562] = 3, + [115922] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7806), 1, + ACTIONS(7971), 1, anon_sym_ATendunless, STATE(3586), 1, sym_comment, - [115572] = 3, + [115932] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7808), 1, + ACTIONS(7973), 1, anon_sym_ATendif, STATE(3587), 1, sym_comment, - [115582] = 3, + [115942] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7810), 1, + ACTIONS(7975), 1, anon_sym_ATendPrependOnce, STATE(3588), 1, sym_comment, - [115592] = 3, + [115952] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7812), 1, + ACTIONS(7977), 1, anon_sym_ATendprepend, STATE(3589), 1, sym_comment, - [115602] = 3, + [115962] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7814), 1, + ACTIONS(7979), 1, anon_sym_ATendPushIf, STATE(3590), 1, sym_comment, - [115612] = 3, + [115972] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7816), 1, + ACTIONS(7981), 1, anon_sym_ATendPushOnce, STATE(3591), 1, sym_comment, - [115622] = 3, + [115982] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7818), 1, + ACTIONS(7983), 1, anon_sym_ATendpush, STATE(3592), 1, sym_comment, - [115632] = 3, + [115992] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7820), 1, + ACTIONS(7985), 1, anon_sym_ATendsection, STATE(3593), 1, sym_comment, - [115642] = 3, + [116002] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7822), 1, + ACTIONS(7987), 1, anon_sym_ATendfragment, STATE(3594), 1, sym_comment, - [115652] = 3, + [116012] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7824), 1, + ACTIONS(7989), 1, anon_sym_ATendfragment, STATE(3595), 1, sym_comment, - [115662] = 3, + [116022] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7826), 1, + ACTIONS(7991), 1, anon_sym_ATendsection, STATE(3596), 1, sym_comment, - [115672] = 3, + [116032] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7828), 1, + ACTIONS(7993), 1, anon_sym_ATendpush, STATE(3597), 1, sym_comment, - [115682] = 3, + [116042] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7830), 1, + ACTIONS(7995), 1, anon_sym_ATendPushOnce, STATE(3598), 1, sym_comment, - [115692] = 3, + [116052] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7832), 1, + ACTIONS(7997), 1, anon_sym_ATendPushIf, STATE(3599), 1, sym_comment, - [115702] = 3, + [116062] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7834), 1, + ACTIONS(7999), 1, anon_sym_ATendprepend, STATE(3600), 1, sym_comment, - [115712] = 3, + [116072] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7836), 1, + ACTIONS(8001), 1, anon_sym_ATendif, STATE(3601), 1, sym_comment, - [115722] = 3, + [116082] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7838), 1, + ACTIONS(8003), 1, anon_sym_ATendif, STATE(3602), 1, sym_comment, - [115732] = 3, + [116092] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7840), 1, + ACTIONS(8005), 1, anon_sym_ATendunless, STATE(3603), 1, sym_comment, - [115742] = 3, + [116102] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7842), 1, + ACTIONS(8007), 1, anon_sym_ATendvolt, STATE(3604), 1, sym_comment, - [115752] = 3, + [116112] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7844), 1, + ACTIONS(8009), 1, anon_sym_ATendfragment, STATE(3605), 1, sym_comment, - [115762] = 3, + [116122] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7846), 1, + ACTIONS(8011), 1, anon_sym_ATendif, STATE(3606), 1, sym_comment, - [115772] = 3, + [116132] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7848), 1, + ACTIONS(8013), 1, anon_sym_ATendenv, STATE(3607), 1, sym_comment, - [115782] = 3, + [116142] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7850), 1, + ACTIONS(8015), 1, anon_sym_ATendteleport, STATE(3608), 1, sym_comment, - [115792] = 3, + [116152] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7852), 1, + ACTIONS(8017), 1, anon_sym_ATendpersist, STATE(3609), 1, sym_comment, - [115802] = 3, + [116162] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7854), 1, + ACTIONS(8019), 1, anon_sym_ATendwhile, STATE(3610), 1, sym_comment, - [115812] = 3, + [116172] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7856), 1, + ACTIONS(8021), 1, anon_sym_ATendforelse, STATE(3611), 1, sym_comment, - [115822] = 3, + [116182] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7858), 1, + ACTIONS(8023), 1, anon_sym_ATendforeach, STATE(3612), 1, sym_comment, - [115832] = 3, + [116192] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7860), 1, + ACTIONS(8025), 1, anon_sym_ATendfor, STATE(3613), 1, sym_comment, - [115842] = 3, + [116202] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7862), 1, + ACTIONS(8027), 1, aux_sym__custom_token3, STATE(3614), 1, sym_comment, - [115852] = 3, + [116212] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7864), 1, + ACTIONS(8029), 1, anon_sym_ATenderror, STATE(3615), 1, sym_comment, - [115862] = 3, + [116222] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7866), 1, + ACTIONS(8031), 1, anon_sym_ATendif, STATE(3616), 1, sym_comment, - [115872] = 3, + [116232] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7868), 1, + ACTIONS(8033), 1, anon_sym_ATendif, STATE(3617), 1, sym_comment, - [115882] = 3, + [116242] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7870), 1, + ACTIONS(8035), 1, anon_sym_ATendenv, STATE(3618), 1, sym_comment, - [115892] = 3, + [116252] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7872), 1, + ACTIONS(8037), 1, anon_sym_ATendempty, STATE(3619), 1, sym_comment, - [115902] = 3, + [116262] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7874), 1, + ACTIONS(8039), 1, anon_sym_ATendguest, STATE(3620), 1, sym_comment, - [115912] = 3, + [116272] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7876), 1, + ACTIONS(8041), 1, anon_sym_ATendauth, STATE(3621), 1, sym_comment, - [115922] = 3, + [116282] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7878), 1, + ACTIONS(8043), 1, anon_sym_ATendempty, STATE(3622), 1, sym_comment, - [115932] = 3, + [116292] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7880), 1, + ACTIONS(8045), 1, anon_sym_ATendisset, STATE(3623), 1, sym_comment, - [115942] = 3, + [116302] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7882), 1, + ACTIONS(8047), 1, anon_sym_ATendunless, STATE(3624), 1, sym_comment, - [115952] = 3, + [116312] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7884), 1, + ACTIONS(8049), 1, anon_sym_ATendif, STATE(3625), 1, sym_comment, - [115962] = 3, + [116322] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7886), 1, + ACTIONS(8051), 1, anon_sym_ATendPrependOnce, STATE(3626), 1, sym_comment, - [115972] = 3, + [116332] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7888), 1, + ACTIONS(8053), 1, anon_sym_ATendprepend, STATE(3627), 1, sym_comment, - [115982] = 3, + [116342] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7890), 1, + ACTIONS(8055), 1, anon_sym_ATendPushIf, STATE(3628), 1, sym_comment, - [115992] = 3, + [116352] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7892), 1, + ACTIONS(8057), 1, anon_sym_ATendPushOnce, STATE(3629), 1, sym_comment, - [116002] = 3, + [116362] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7894), 1, + ACTIONS(8059), 1, anon_sym_ATendpush, STATE(3630), 1, sym_comment, - [116012] = 3, + [116372] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7896), 1, + ACTIONS(8061), 1, anon_sym_ATendguest, STATE(3631), 1, sym_comment, - [116022] = 3, + [116382] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7898), 1, + ACTIONS(8063), 1, anon_sym_ATendauth, STATE(3632), 1, sym_comment, - [116032] = 3, + [116392] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7900), 1, + ACTIONS(8065), 1, anon_sym_ATendempty, STATE(3633), 1, sym_comment, - [116042] = 3, + [116402] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7902), 1, + ACTIONS(8067), 1, anon_sym_ATendauth, STATE(3634), 1, sym_comment, - [116052] = 3, + [116412] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7904), 1, + ACTIONS(8069), 1, anon_sym_ATendguest, STATE(3635), 1, sym_comment, - [116062] = 3, + [116422] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7906), 1, + ACTIONS(8071), 1, anon_sym_ATendsection, STATE(3636), 1, sym_comment, - [116072] = 3, + [116432] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7908), 1, + ACTIONS(8073), 1, anon_sym_ATendfragment, STATE(3637), 1, sym_comment, - [116082] = 3, + [116442] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7910), 1, + ACTIONS(8075), 1, anon_sym_ATendenv, STATE(3638), 1, sym_comment, - [116092] = 3, + [116452] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7912), 1, + ACTIONS(8077), 1, anon_sym_ATendif, STATE(3639), 1, sym_comment, - [116102] = 3, + [116462] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7914), 1, + ACTIONS(8079), 1, anon_sym_ATendif, STATE(3640), 1, sym_comment, - [116112] = 3, + [116472] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7916), 1, + ACTIONS(8081), 1, anon_sym_ATenderror, STATE(3641), 1, sym_comment, - [116122] = 3, + [116482] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7918), 1, + ACTIONS(8083), 1, aux_sym__custom_token3, STATE(3642), 1, sym_comment, - [116132] = 3, + [116492] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7920), 1, + ACTIONS(8085), 1, anon_sym_ATendisset, STATE(3643), 1, sym_comment, - [116142] = 3, + [116502] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7922), 1, + ACTIONS(8087), 1, anon_sym_ATendforeach, STATE(3644), 1, sym_comment, - [116152] = 3, + [116512] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7924), 1, + ACTIONS(8089), 1, anon_sym_ATendforelse, STATE(3645), 1, sym_comment, - [116162] = 3, + [116522] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7926), 1, + ACTIONS(8091), 1, anon_sym_ATendwhile, STATE(3646), 1, sym_comment, - [116172] = 3, + [116532] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7928), 1, + ACTIONS(8093), 1, anon_sym_ATendpersist, STATE(3647), 1, sym_comment, - [116182] = 3, + [116542] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7930), 1, + ACTIONS(8095), 1, anon_sym_ATendteleport, STATE(3648), 1, sym_comment, - [116192] = 3, + [116552] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7932), 1, + ACTIONS(8097), 1, anon_sym_ATendvolt, STATE(3649), 1, sym_comment, - [116202] = 3, + [116562] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7934), 1, + ACTIONS(8099), 1, anon_sym_ATendteleport, STATE(3650), 1, sym_comment, - [116212] = 3, + [116572] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7936), 1, + ACTIONS(8101), 1, anon_sym_ATendpersist, STATE(3651), 1, sym_comment, - [116222] = 3, + [116582] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7938), 1, + ACTIONS(8103), 1, anon_sym_ATendwhile, STATE(3652), 1, sym_comment, - [116232] = 3, + [116592] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7940), 1, + ACTIONS(8105), 1, anon_sym_ATendunless, STATE(3653), 1, sym_comment, - [116242] = 3, + [116602] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7942), 1, + ACTIONS(8107), 1, anon_sym_ATendforeach, STATE(3654), 1, sym_comment, - [116252] = 3, + [116612] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7944), 1, + ACTIONS(8109), 1, anon_sym_ATendfor, STATE(3655), 1, sym_comment, - [116262] = 3, + [116622] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7946), 1, + ACTIONS(8111), 1, aux_sym__custom_token3, STATE(3656), 1, sym_comment, - [116272] = 3, + [116632] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7948), 1, + ACTIONS(8113), 1, anon_sym_ATendisset, STATE(3657), 1, sym_comment, - [116282] = 3, + [116642] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7950), 1, + ACTIONS(8115), 1, anon_sym_ATendunless, STATE(3658), 1, sym_comment, - [116292] = 3, + [116652] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7952), 1, + ACTIONS(8117), 1, anon_sym_ATendif, STATE(3659), 1, sym_comment, - [116302] = 3, + [116662] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7954), 1, + ACTIONS(8119), 1, anon_sym_ATenderror, STATE(3660), 1, sym_comment, - [116312] = 3, + [116672] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7956), 1, + ACTIONS(8121), 1, anon_sym_ATendif, STATE(3661), 1, sym_comment, - [116322] = 3, + [116682] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7958), 1, + ACTIONS(8123), 1, anon_sym_ATendif, STATE(3662), 1, sym_comment, - [116332] = 3, + [116692] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7960), 1, + ACTIONS(8125), 1, anon_sym_ATendenv, STATE(3663), 1, sym_comment, - [116342] = 3, + [116702] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7962), 1, + ACTIONS(8127), 1, anon_sym_ATendvolt, STATE(3664), 1, sym_comment, - [116352] = 3, + [116712] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7964), 1, + ACTIONS(8129), 1, anon_sym_ATendguest, STATE(3665), 1, sym_comment, - [116362] = 3, + [116722] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7966), 1, + ACTIONS(8131), 1, anon_sym_ATendauth, STATE(3666), 1, sym_comment, - [116372] = 3, + [116732] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7968), 1, + ACTIONS(8133), 1, anon_sym_ATendempty, STATE(3667), 1, sym_comment, - [116382] = 3, + [116742] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7970), 1, + ACTIONS(8135), 1, anon_sym_ATendisset, STATE(3668), 1, sym_comment, - [116392] = 3, + [116752] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7972), 1, + ACTIONS(8137), 1, anon_sym_ATendunless, STATE(3669), 1, sym_comment, - [116402] = 3, + [116762] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7974), 1, + ACTIONS(8139), 1, anon_sym_ATendforelse, STATE(3670), 1, sym_comment, - [116412] = 3, + [116772] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7976), 1, + ACTIONS(8141), 1, anon_sym_ATendPrependOnce, STATE(3671), 1, sym_comment, - [116422] = 3, + [116782] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7978), 1, + ACTIONS(8143), 1, anon_sym_ATendprepend, STATE(3672), 1, sym_comment, - [116432] = 3, + [116792] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7980), 1, + ACTIONS(8145), 1, anon_sym_ATendPushIf, STATE(3673), 1, sym_comment, - [116442] = 3, + [116802] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7982), 1, + ACTIONS(8147), 1, anon_sym_ATendPushOnce, STATE(3674), 1, sym_comment, - [116452] = 3, + [116812] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7984), 1, + ACTIONS(8149), 1, anon_sym_ATendpush, STATE(3675), 1, sym_comment, - [116462] = 3, + [116822] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7986), 1, + ACTIONS(8151), 1, anon_sym_ATendsection, STATE(3676), 1, sym_comment, - [116472] = 3, + [116832] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7988), 1, + ACTIONS(8153), 1, anon_sym_ATendfragment, STATE(3677), 1, sym_comment, - [116482] = 3, + [116842] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7990), 1, + ACTIONS(8155), 1, anon_sym_ATendfragment, STATE(3678), 1, sym_comment, - [116492] = 3, + [116852] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7992), 1, + ACTIONS(8157), 1, anon_sym_ATendsection, STATE(3679), 1, sym_comment, - [116502] = 3, + [116862] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7994), 1, + ACTIONS(8159), 1, anon_sym_ATendpush, STATE(3680), 1, sym_comment, - [116512] = 3, + [116872] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7996), 1, + ACTIONS(8161), 1, anon_sym_ATendPushOnce, STATE(3681), 1, sym_comment, - [116522] = 3, + [116882] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7998), 1, + ACTIONS(8163), 1, anon_sym_ATendPushIf, STATE(3682), 1, sym_comment, - [116532] = 3, + [116892] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8000), 1, + ACTIONS(8165), 1, anon_sym_ATendPrependOnce, STATE(3683), 1, sym_comment, - [116542] = 3, + [116902] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8002), 1, + ACTIONS(8167), 1, anon_sym_ATendprepend, STATE(3684), 1, sym_comment, - [116552] = 3, + [116912] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8004), 1, + ACTIONS(8169), 1, anon_sym_ATendPushIf, STATE(3685), 1, sym_comment, - [116562] = 3, + [116922] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8006), 1, + ACTIONS(8171), 1, anon_sym_ATendprepend, STATE(3686), 1, sym_comment, - [116572] = 3, + [116932] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8008), 1, + ACTIONS(8173), 1, anon_sym_ATendPrependOnce, STATE(3687), 1, sym_comment, - [116582] = 3, + [116942] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8010), 1, + ACTIONS(8175), 1, anon_sym_ATendif, STATE(3688), 1, sym_comment, - [116592] = 3, + [116952] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8012), 1, + ACTIONS(8177), 1, anon_sym_ATendunless, STATE(3689), 1, sym_comment, - [116602] = 3, + [116962] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8014), 1, + ACTIONS(8179), 1, anon_sym_ATendvolt, STATE(3690), 1, sym_comment, - [116612] = 3, + [116972] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8016), 1, + ACTIONS(8181), 1, anon_sym_ATendteleport, STATE(3691), 1, sym_comment, - [116622] = 3, + [116982] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8018), 1, + ACTIONS(8183), 1, anon_sym_ATendpersist, STATE(3692), 1, sym_comment, - [116632] = 3, + [116992] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8020), 1, + ACTIONS(8185), 1, anon_sym_ATendwhile, STATE(3693), 1, sym_comment, - [116642] = 3, + [117002] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8022), 1, + ACTIONS(8187), 1, anon_sym_ATendforelse, STATE(3694), 1, sym_comment, - [116652] = 3, + [117012] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8024), 1, + ACTIONS(8189), 1, anon_sym_ATendforeach, STATE(3695), 1, sym_comment, - [116662] = 3, + [117022] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8026), 1, + ACTIONS(8191), 1, anon_sym_ATendfor, STATE(3696), 1, sym_comment, - [116672] = 3, + [117032] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8028), 1, + ACTIONS(8193), 1, aux_sym__custom_token3, STATE(3697), 1, sym_comment, - [116682] = 3, + [117042] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8030), 1, + ACTIONS(8195), 1, anon_sym_ATenderror, STATE(3698), 1, sym_comment, - [116692] = 3, + [117052] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8032), 1, + ACTIONS(8197), 1, anon_sym_ATendif, STATE(3699), 1, sym_comment, - [116702] = 3, + [117062] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8034), 1, + ACTIONS(8199), 1, anon_sym_ATendif, STATE(3700), 1, sym_comment, - [116712] = 3, + [117072] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8036), 1, + ACTIONS(8201), 1, anon_sym_ATendenv, STATE(3701), 1, sym_comment, - [116722] = 3, + [117082] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8038), 1, + ACTIONS(8203), 1, anon_sym_ATendisset, STATE(3702), 1, sym_comment, - [116732] = 3, + [117092] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8040), 1, + ACTIONS(8205), 1, anon_sym_ATendguest, STATE(3703), 1, sym_comment, - [116742] = 3, + [117102] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8042), 1, + ACTIONS(8207), 1, anon_sym_ATendauth, STATE(3704), 1, sym_comment, - [116752] = 3, + [117112] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8044), 1, + ACTIONS(8209), 1, anon_sym_ATendempty, STATE(3705), 1, sym_comment, - [116762] = 3, + [117122] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8046), 1, + ACTIONS(8211), 1, anon_sym_ATendisset, STATE(3706), 1, sym_comment, - [116772] = 3, + [117132] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8048), 1, + ACTIONS(8213), 1, anon_sym_ATendunless, STATE(3707), 1, sym_comment, - [116782] = 3, + [117142] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8050), 1, + ACTIONS(8215), 1, anon_sym_ATendif, STATE(3708), 1, sym_comment, - [116792] = 3, + [117152] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8052), 1, + ACTIONS(8217), 1, anon_sym_ATendPushOnce, STATE(3709), 1, sym_comment, - [116802] = 3, + [117162] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8054), 1, + ACTIONS(8219), 1, anon_sym_ATendpush, STATE(3710), 1, sym_comment, - [116812] = 3, + [117172] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8056), 1, + ACTIONS(8221), 1, anon_sym_ATendsection, STATE(3711), 1, sym_comment, - [116822] = 3, + [117182] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8058), 1, + ACTIONS(8223), 1, anon_sym_ATendPrependOnce, STATE(3712), 1, sym_comment, - [116832] = 3, + [117192] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8060), 1, + ACTIONS(8225), 1, anon_sym_ATendprepend, STATE(3713), 1, sym_comment, - [116842] = 3, + [117202] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8062), 1, + ACTIONS(8227), 1, anon_sym_ATendPushIf, STATE(3714), 1, sym_comment, - [116852] = 3, + [117212] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8064), 1, + ACTIONS(8229), 1, anon_sym_ATendPushOnce, STATE(3715), 1, sym_comment, - [116862] = 3, + [117222] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8066), 1, + ACTIONS(8231), 1, anon_sym_ATendpush, STATE(3716), 1, sym_comment, - [116872] = 3, + [117232] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8068), 1, + ACTIONS(8233), 1, anon_sym_ATendempty, STATE(3717), 1, sym_comment, - [116882] = 3, + [117242] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8070), 1, + ACTIONS(8235), 1, anon_sym_ATendauth, STATE(3718), 1, sym_comment, - [116892] = 3, + [117252] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8072), 1, + ACTIONS(8237), 1, anon_sym_ATendsection, STATE(3719), 1, sym_comment, - [116902] = 3, + [117262] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8074), 1, + ACTIONS(8239), 1, anon_sym_ATendfragment, STATE(3720), 1, sym_comment, - [116912] = 3, + [117272] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8076), 1, + ACTIONS(8241), 1, anon_sym_ATendguest, STATE(3721), 1, sym_comment, - [116922] = 3, + [117282] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8078), 1, + ACTIONS(8243), 1, anon_sym_ATendenv, STATE(3722), 1, sym_comment, - [116932] = 3, + [117292] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8080), 1, + ACTIONS(8245), 1, anon_sym_ATendif, STATE(3723), 1, sym_comment, - [116942] = 3, + [117302] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8082), 1, + ACTIONS(8247), 1, anon_sym_ATendif, STATE(3724), 1, sym_comment, - [116952] = 3, + [117312] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8084), 1, + ACTIONS(8249), 1, anon_sym_ATenderror, STATE(3725), 1, sym_comment, - [116962] = 3, + [117322] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8086), 1, + ACTIONS(8251), 1, aux_sym__custom_token3, STATE(3726), 1, sym_comment, - [116972] = 3, + [117332] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8088), 1, + ACTIONS(8253), 1, anon_sym_ATendfor, STATE(3727), 1, sym_comment, - [116982] = 3, + [117342] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8090), 1, + ACTIONS(8255), 1, anon_sym_ATendforeach, STATE(3728), 1, sym_comment, - [116992] = 3, + [117352] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8092), 1, + ACTIONS(8257), 1, anon_sym_ATenderror, STATE(3729), 1, sym_comment, - [117002] = 3, + [117362] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8094), 1, + ACTIONS(8259), 1, anon_sym_ATendwhile, STATE(3730), 1, sym_comment, - [117012] = 3, + [117372] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8096), 1, + ACTIONS(8261), 1, anon_sym_ATendfor, STATE(3731), 1, sym_comment, - [117022] = 3, + [117382] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8098), 1, + ACTIONS(8263), 1, anon_sym_ATendvolt, STATE(3732), 1, sym_comment, - [117032] = 3, + [117392] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8100), 1, + ACTIONS(8265), 1, anon_sym_ATendteleport, STATE(3733), 1, sym_comment, - [117042] = 3, + [117402] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8102), 1, + ACTIONS(8267), 1, anon_sym_ATendpersist, STATE(3734), 1, sym_comment, - [117052] = 3, + [117412] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8104), 1, + ACTIONS(8269), 1, anon_sym_ATendwhile, STATE(3735), 1, sym_comment, - [117062] = 3, + [117422] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8106), 1, + ACTIONS(8271), 1, anon_sym_ATendforelse, STATE(3736), 1, sym_comment, - [117072] = 3, + [117432] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8108), 1, + ACTIONS(8273), 1, anon_sym_ATendforeach, STATE(3737), 1, sym_comment, - [117082] = 3, + [117442] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8110), 1, + ACTIONS(8275), 1, anon_sym_ATendfor, STATE(3738), 1, sym_comment, - [117092] = 3, + [117452] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8112), 1, + ACTIONS(8277), 1, aux_sym__custom_token3, STATE(3739), 1, sym_comment, - [117102] = 3, + [117462] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8114), 1, + ACTIONS(8279), 1, anon_sym_ATenderror, STATE(3740), 1, sym_comment, - [117112] = 3, + [117472] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8116), 1, + ACTIONS(8281), 1, anon_sym_ATendif, STATE(3741), 1, sym_comment, - [117122] = 3, + [117482] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8118), 1, + ACTIONS(8283), 1, anon_sym_ATendif, STATE(3742), 1, sym_comment, - [117132] = 3, + [117492] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8120), 1, + ACTIONS(8285), 1, anon_sym_ATendenv, STATE(3743), 1, sym_comment, - [117142] = 3, + [117502] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8122), 1, + ACTIONS(8287), 1, anon_sym_ATendteleport, STATE(3744), 1, sym_comment, - [117152] = 3, + [117512] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8124), 1, + ACTIONS(8289), 1, anon_sym_ATendguest, STATE(3745), 1, sym_comment, - [117162] = 3, + [117522] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8126), 1, + ACTIONS(8291), 1, anon_sym_ATendauth, STATE(3746), 1, sym_comment, - [117172] = 3, + [117532] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8128), 1, + ACTIONS(8293), 1, anon_sym_ATendempty, STATE(3747), 1, sym_comment, - [117182] = 3, + [117542] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8130), 1, + ACTIONS(8295), 1, anon_sym_ATendisset, STATE(3748), 1, sym_comment, - [117192] = 3, + [117552] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8132), 1, + ACTIONS(8297), 1, anon_sym_ATendunless, STATE(3749), 1, sym_comment, - [117202] = 3, + [117562] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8134), 1, + ACTIONS(8299), 1, anon_sym_ATendif, STATE(3750), 1, sym_comment, - [117212] = 3, + [117572] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8136), 1, + ACTIONS(8301), 1, anon_sym_ATendPrependOnce, STATE(3751), 1, sym_comment, - [117222] = 3, + [117582] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8138), 1, + ACTIONS(8303), 1, anon_sym_ATendprepend, STATE(3752), 1, sym_comment, - [117232] = 3, + [117592] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8140), 1, + ACTIONS(8305), 1, anon_sym_ATendPushIf, STATE(3753), 1, sym_comment, - [117242] = 3, + [117602] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8142), 1, + ACTIONS(8307), 1, anon_sym_ATendPushOnce, STATE(3754), 1, sym_comment, - [117252] = 3, + [117612] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8144), 1, + ACTIONS(8309), 1, anon_sym_ATendpush, STATE(3755), 1, sym_comment, - [117262] = 3, + [117622] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8146), 1, + ACTIONS(8311), 1, anon_sym_ATendvolt, STATE(3756), 1, sym_comment, - [117272] = 3, + [117632] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8148), 1, + ACTIONS(8313), 1, anon_sym_ATendsection, STATE(3757), 1, sym_comment, - [117282] = 3, + [117642] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8150), 1, + ACTIONS(8315), 1, anon_sym_ATendfragment, STATE(3758), 1, sym_comment, - [117292] = 3, + [117652] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8152), 1, + ACTIONS(8317), 1, anon_sym_ATendfragment, STATE(3759), 1, sym_comment, - [117302] = 3, + [117662] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8154), 1, + ACTIONS(8319), 1, anon_sym_ATendsection, STATE(3760), 1, sym_comment, - [117312] = 3, + [117672] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8156), 1, + ACTIONS(8321), 1, anon_sym_ATendpush, STATE(3761), 1, sym_comment, - [117322] = 3, + [117682] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8158), 1, + ACTIONS(8323), 1, ts_builtin_sym_end, STATE(3762), 1, sym_comment, - [117332] = 3, + [117692] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8160), 1, + ACTIONS(8325), 1, anon_sym_ATendPushOnce, STATE(3763), 1, sym_comment, - [117342] = 3, + [117702] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8162), 1, + ACTIONS(8327), 1, anon_sym_ATendPushIf, STATE(3764), 1, sym_comment, - [117352] = 3, + [117712] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8164), 1, + ACTIONS(8329), 1, anon_sym_ATendprepend, STATE(3765), 1, sym_comment, - [117362] = 3, + [117722] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8166), 1, + ACTIONS(8331), 1, anon_sym_ATendPrependOnce, STATE(3766), 1, sym_comment, - [117372] = 3, + [117732] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8168), 1, + ACTIONS(8333), 1, anon_sym_ATendif, STATE(3767), 1, sym_comment, - [117382] = 3, + [117742] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8170), 1, + ACTIONS(8335), 1, anon_sym_ATendvolt, STATE(3768), 1, sym_comment, - [117392] = 3, + [117752] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8172), 1, + ACTIONS(8337), 1, anon_sym_ATendteleport, STATE(3769), 1, sym_comment, - [117402] = 3, + [117762] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8174), 1, + ACTIONS(8339), 1, anon_sym_ATendpersist, STATE(3770), 1, sym_comment, - [117412] = 3, + [117772] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8176), 1, + ACTIONS(8341), 1, anon_sym_ATendwhile, STATE(3771), 1, sym_comment, - [117422] = 3, + [117782] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8178), 1, + ACTIONS(8343), 1, anon_sym_ATendforelse, STATE(3772), 1, sym_comment, - [117432] = 3, + [117792] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8180), 1, + ACTIONS(8345), 1, anon_sym_ATendforeach, STATE(3773), 1, sym_comment, - [117442] = 3, + [117802] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8182), 1, + ACTIONS(8347), 1, anon_sym_ATendfor, STATE(3774), 1, sym_comment, - [117452] = 3, + [117812] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8184), 1, + ACTIONS(8349), 1, aux_sym__custom_token3, STATE(3775), 1, sym_comment, - [117462] = 3, + [117822] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8186), 1, + ACTIONS(8351), 1, anon_sym_ATendauth, STATE(3776), 1, sym_comment, - [117472] = 3, + [117832] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8188), 1, + ACTIONS(8353), 1, anon_sym_ATendif, STATE(3777), 1, sym_comment, - [117482] = 3, + [117842] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8190), 1, + ACTIONS(8355), 1, anon_sym_ATendif, STATE(3778), 1, sym_comment, - [117492] = 3, + [117852] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8192), 1, + ACTIONS(8357), 1, anon_sym_ATendenv, STATE(3779), 1, sym_comment, - [117502] = 3, + [117862] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8194), 1, + ACTIONS(8359), 1, anon_sym_ATendunless, STATE(3780), 1, sym_comment, - [117512] = 3, + [117872] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8196), 1, + ACTIONS(8361), 1, anon_sym_ATendguest, STATE(3781), 1, sym_comment, - [117522] = 3, + [117882] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8198), 1, + ACTIONS(8363), 1, anon_sym_ATendauth, STATE(3782), 1, sym_comment, - [117532] = 3, + [117892] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8200), 1, + ACTIONS(8365), 1, anon_sym_ATendempty, STATE(3783), 1, sym_comment, - [117542] = 3, + [117902] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8202), 1, + ACTIONS(8367), 1, anon_sym_ATendisset, STATE(3784), 1, sym_comment, - [117552] = 3, + [117912] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8204), 1, + ACTIONS(8369), 1, anon_sym_ATendunless, STATE(3785), 1, sym_comment, - [117562] = 3, + [117922] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8206), 1, + ACTIONS(8371), 1, anon_sym_ATendif, STATE(3786), 1, sym_comment, - [117572] = 3, + [117932] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8208), 1, + ACTIONS(8373), 1, anon_sym_ATendPrependOnce, STATE(3787), 1, sym_comment, - [117582] = 3, + [117942] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8210), 1, + ACTIONS(8375), 1, anon_sym_ATendprepend, STATE(3788), 1, sym_comment, - [117592] = 3, + [117952] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8212), 1, + ACTIONS(8377), 1, anon_sym_ATendPushIf, STATE(3789), 1, sym_comment, - [117602] = 3, + [117962] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8214), 1, + ACTIONS(8379), 1, anon_sym_ATendPushOnce, STATE(3790), 1, sym_comment, - [117612] = 3, + [117972] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8216), 1, + ACTIONS(8381), 1, anon_sym_ATendpush, STATE(3791), 1, sym_comment, - [117622] = 3, + [117982] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8218), 1, + ACTIONS(8383), 1, anon_sym_ATendisset, STATE(3792), 1, sym_comment, - [117632] = 3, + [117992] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8220), 1, + ACTIONS(8385), 1, anon_sym_ATendempty, STATE(3793), 1, sym_comment, - [117642] = 3, + [118002] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8222), 1, + ACTIONS(8387), 1, anon_sym_ATendsection, STATE(3794), 1, sym_comment, - [117652] = 3, + [118012] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8224), 1, + ACTIONS(8389), 1, anon_sym_ATendfragment, STATE(3795), 1, sym_comment, - [117662] = 3, + [118022] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8226), 1, + ACTIONS(8391), 1, anon_sym_ATendauth, STATE(3796), 1, sym_comment, - [117672] = 3, + [118032] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8228), 1, + ACTIONS(8393), 1, anon_sym_ATendguest, STATE(3797), 1, sym_comment, - [117682] = 3, + [118042] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8230), 1, + ACTIONS(8395), 1, anon_sym_ATendenv, STATE(3798), 1, sym_comment, - [117692] = 3, + [118052] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8232), 1, + ACTIONS(8397), 1, anon_sym_ATendif, STATE(3799), 1, sym_comment, - [117702] = 3, + [118062] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8234), 1, + ACTIONS(8399), 1, anon_sym_ATendif, STATE(3800), 1, sym_comment, - [117712] = 3, + [118072] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8236), 1, + ACTIONS(8401), 1, anon_sym_ATenderror, STATE(3801), 1, sym_comment, - [117722] = 3, + [118082] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8238), 1, + ACTIONS(8403), 1, aux_sym__custom_token3, STATE(3802), 1, sym_comment, - [117732] = 3, + [118092] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8240), 1, + ACTIONS(8405), 1, anon_sym_ATendfor, STATE(3803), 1, sym_comment, - [117742] = 3, + [118102] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8242), 1, + ACTIONS(8407), 1, anon_sym_ATendforeach, STATE(3804), 1, sym_comment, - [117752] = 3, + [118112] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8244), 1, + ACTIONS(8409), 1, anon_sym_ATendforelse, STATE(3805), 1, sym_comment, - [117762] = 3, + [118122] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8246), 1, + ACTIONS(8411), 1, anon_sym_ATendwhile, STATE(3806), 1, sym_comment, - [117772] = 3, + [118132] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8248), 1, + ACTIONS(8413), 1, anon_sym_ATendvolt, STATE(3807), 1, sym_comment, - [117782] = 3, + [118142] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8250), 1, + ACTIONS(8415), 1, anon_sym_ATendteleport, STATE(3808), 1, sym_comment, - [117792] = 3, + [118152] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8252), 1, + ACTIONS(8417), 1, anon_sym_ATendpersist, STATE(3809), 1, sym_comment, - [117802] = 3, + [118162] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8254), 1, + ACTIONS(8419), 1, anon_sym_ATendwhile, STATE(3810), 1, sym_comment, - [117812] = 3, + [118172] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8256), 1, + ACTIONS(8421), 1, anon_sym_ATendforelse, STATE(3811), 1, sym_comment, - [117822] = 3, + [118182] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8258), 1, + ACTIONS(8423), 1, anon_sym_ATendforeach, STATE(3812), 1, sym_comment, - [117832] = 3, + [118192] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8260), 1, + ACTIONS(8425), 1, anon_sym_ATendfor, STATE(3813), 1, sym_comment, - [117842] = 3, + [118202] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8262), 1, + ACTIONS(8427), 1, aux_sym__custom_token3, STATE(3814), 1, sym_comment, - [117852] = 3, + [118212] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8264), 1, + ACTIONS(8429), 1, anon_sym_ATenderror, STATE(3815), 1, sym_comment, - [117862] = 3, + [118222] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8266), 1, + ACTIONS(8431), 1, anon_sym_ATendif, STATE(3816), 1, sym_comment, - [117872] = 3, + [118232] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8268), 1, + ACTIONS(8433), 1, anon_sym_ATendif, STATE(3817), 1, sym_comment, - [117882] = 3, + [118242] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8270), 1, + ACTIONS(8435), 1, anon_sym_ATendenv, STATE(3818), 1, sym_comment, - [117892] = 3, + [118252] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8272), 1, + ACTIONS(8437), 1, anon_sym_ATendpersist, STATE(3819), 1, sym_comment, - [117902] = 3, + [118262] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8274), 1, + ACTIONS(8439), 1, anon_sym_ATendguest, STATE(3820), 1, sym_comment, - [117912] = 3, + [118272] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8276), 1, + ACTIONS(8441), 1, anon_sym_ATendauth, STATE(3821), 1, sym_comment, - [117922] = 3, + [118282] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8278), 1, + ACTIONS(8443), 1, anon_sym_ATendempty, STATE(3822), 1, sym_comment, - [117932] = 3, + [118292] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8280), 1, + ACTIONS(8445), 1, anon_sym_ATendisset, STATE(3823), 1, sym_comment, - [117942] = 3, + [118302] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8282), 1, + ACTIONS(8447), 1, anon_sym_ATendunless, STATE(3824), 1, sym_comment, - [117952] = 3, + [118312] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8284), 1, + ACTIONS(8449), 1, anon_sym_ATendif, STATE(3825), 1, sym_comment, - [117962] = 3, + [118322] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8286), 1, + ACTIONS(8451), 1, anon_sym_ATendPrependOnce, STATE(3826), 1, sym_comment, - [117972] = 3, + [118332] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8288), 1, + ACTIONS(8453), 1, anon_sym_ATendprepend, STATE(3827), 1, sym_comment, - [117982] = 3, + [118342] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8290), 1, + ACTIONS(8455), 1, anon_sym_ATendPushIf, STATE(3828), 1, sym_comment, - [117992] = 3, + [118352] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8292), 1, + ACTIONS(8457), 1, anon_sym_ATendPushOnce, STATE(3829), 1, sym_comment, - [118002] = 3, + [118362] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8294), 1, + ACTIONS(8459), 1, anon_sym_ATendpush, STATE(3830), 1, sym_comment, - [118012] = 3, + [118372] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8296), 1, + ACTIONS(8461), 1, anon_sym_ATendteleport, STATE(3831), 1, sym_comment, - [118022] = 3, + [118382] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8298), 1, + ACTIONS(8463), 1, anon_sym_ATendvolt, STATE(3832), 1, sym_comment, - [118032] = 3, + [118392] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8300), 1, + ACTIONS(8465), 1, anon_sym_ATendsection, STATE(3833), 1, sym_comment, - [118042] = 3, + [118402] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8302), 1, + ACTIONS(8467), 1, anon_sym_ATendfragment, STATE(3834), 1, sym_comment, - [118052] = 3, + [118412] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8304), 1, + ACTIONS(8469), 1, anon_sym_ATendfragment, STATE(3835), 1, sym_comment, - [118062] = 3, + [118422] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8306), 1, + ACTIONS(8471), 1, anon_sym_ATendpersist, STATE(3836), 1, sym_comment, - [118072] = 3, + [118432] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8308), 1, + ACTIONS(8473), 1, anon_sym_ATendpush, STATE(3837), 1, sym_comment, - [118082] = 3, + [118442] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8310), 1, + ACTIONS(8475), 1, anon_sym_ATendPushOnce, STATE(3838), 1, sym_comment, - [118092] = 3, + [118452] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8312), 1, + ACTIONS(8477), 1, anon_sym_ATendPushIf, STATE(3839), 1, sym_comment, - [118102] = 3, + [118462] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8314), 1, + ACTIONS(8479), 1, anon_sym_ATendprepend, STATE(3840), 1, sym_comment, - [118112] = 3, + [118472] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8316), 1, + ACTIONS(8481), 1, anon_sym_ATendPrependOnce, STATE(3841), 1, sym_comment, - [118122] = 3, + [118482] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8318), 1, + ACTIONS(8483), 1, anon_sym_ATendvolt, STATE(3842), 1, sym_comment, - [118132] = 3, + [118492] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8320), 1, + ACTIONS(8485), 1, anon_sym_ATendteleport, STATE(3843), 1, sym_comment, - [118142] = 3, + [118502] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8322), 1, + ACTIONS(8487), 1, anon_sym_ATendpersist, STATE(3844), 1, sym_comment, - [118152] = 3, + [118512] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8324), 1, + ACTIONS(8489), 1, anon_sym_ATendwhile, STATE(3845), 1, sym_comment, - [118162] = 3, + [118522] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8326), 1, + ACTIONS(8491), 1, anon_sym_ATendforelse, STATE(3846), 1, sym_comment, - [118172] = 3, + [118532] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8328), 1, + ACTIONS(8493), 1, anon_sym_ATendforeach, STATE(3847), 1, sym_comment, - [118182] = 3, + [118542] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8330), 1, + ACTIONS(8495), 1, anon_sym_ATendfor, STATE(3848), 1, sym_comment, - [118192] = 3, + [118552] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8332), 1, + ACTIONS(8497), 1, aux_sym__custom_token3, STATE(3849), 1, sym_comment, - [118202] = 3, + [118562] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8334), 1, + ACTIONS(8499), 1, anon_sym_ATenderror, STATE(3850), 1, sym_comment, - [118212] = 3, + [118572] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8336), 1, + ACTIONS(8501), 1, anon_sym_ATendif, STATE(3851), 1, sym_comment, - [118222] = 3, + [118582] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8338), 1, + ACTIONS(8503), 1, anon_sym_ATendif, STATE(3852), 1, sym_comment, - [118232] = 3, + [118592] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8340), 1, + ACTIONS(8505), 1, anon_sym_ATendenv, STATE(3853), 1, sym_comment, - [118242] = 3, + [118602] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8342), 1, + ACTIONS(8507), 1, anon_sym_ATendif, STATE(3854), 1, sym_comment, - [118252] = 3, + [118612] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8344), 1, + ACTIONS(8509), 1, anon_sym_ATendguest, STATE(3855), 1, sym_comment, - [118262] = 3, + [118622] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8346), 1, + ACTIONS(8511), 1, anon_sym_ATendforelse, STATE(3856), 1, sym_comment, - [118272] = 3, + [118632] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8348), 1, + ACTIONS(8513), 1, anon_sym_ATendempty, STATE(3857), 1, sym_comment, - [118282] = 3, + [118642] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8350), 1, + ACTIONS(8515), 1, anon_sym_ATendisset, STATE(3858), 1, sym_comment, - [118292] = 3, + [118652] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8352), 1, + ACTIONS(8517), 1, anon_sym_ATendunless, STATE(3859), 1, sym_comment, - [118302] = 3, + [118662] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8354), 1, + ACTIONS(8519), 1, anon_sym_ATendif, STATE(3860), 1, sym_comment, - [118312] = 3, + [118672] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8356), 1, + ACTIONS(8521), 1, anon_sym_ATendPrependOnce, STATE(3861), 1, sym_comment, - [118322] = 3, + [118682] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8358), 1, + ACTIONS(8523), 1, anon_sym_ATendprepend, STATE(3862), 1, sym_comment, - [118332] = 3, + [118692] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8360), 1, + ACTIONS(8525), 1, anon_sym_ATendPushIf, STATE(3863), 1, sym_comment, - [118342] = 3, + [118702] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8362), 1, + ACTIONS(8527), 1, anon_sym_ATendPushOnce, STATE(3864), 1, sym_comment, - [118352] = 3, + [118712] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8364), 1, + ACTIONS(8529), 1, anon_sym_ATendpush, STATE(3865), 1, sym_comment, - [118362] = 3, + [118722] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8366), 1, + ACTIONS(8531), 1, anon_sym_ATendunless, STATE(3866), 1, sym_comment, - [118372] = 3, + [118732] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8368), 1, + ACTIONS(8533), 1, anon_sym_ATendisset, STATE(3867), 1, sym_comment, - [118382] = 3, + [118742] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8370), 1, + ACTIONS(8535), 1, anon_sym_ATendsection, STATE(3868), 1, sym_comment, - [118392] = 3, + [118752] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8372), 1, + ACTIONS(8537), 1, anon_sym_ATendfragment, STATE(3869), 1, sym_comment, - [118402] = 3, + [118762] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8374), 1, + ACTIONS(8539), 1, anon_sym_ATendsection, STATE(3870), 1, sym_comment, - [118412] = 3, + [118772] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8376), 1, + ACTIONS(8541), 1, anon_sym_ATendauth, STATE(3871), 1, sym_comment, - [118422] = 3, + [118782] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8378), 1, + ACTIONS(8543), 1, anon_sym_ATendguest, STATE(3872), 1, sym_comment, - [118432] = 3, + [118792] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8380), 1, + ACTIONS(8545), 1, anon_sym_ATendenv, STATE(3873), 1, sym_comment, - [118442] = 3, + [118802] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8382), 1, + ACTIONS(8547), 1, anon_sym_ATendif, STATE(3874), 1, sym_comment, - [118452] = 3, + [118812] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8384), 1, + ACTIONS(8549), 1, anon_sym_ATendif, STATE(3875), 1, sym_comment, - [118462] = 3, + [118822] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8386), 1, + ACTIONS(8551), 1, anon_sym_ATenderror, STATE(3876), 1, sym_comment, - [118472] = 3, + [118832] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8388), 1, + ACTIONS(8553), 1, aux_sym__custom_token3, STATE(3877), 1, sym_comment, - [118482] = 3, + [118842] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8390), 1, + ACTIONS(8555), 1, anon_sym_ATendfor, STATE(3878), 1, sym_comment, - [118492] = 3, + [118852] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8392), 1, + ACTIONS(8557), 1, anon_sym_ATendforeach, STATE(3879), 1, sym_comment, - [118502] = 3, + [118862] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8394), 1, + ACTIONS(8559), 1, anon_sym_ATendisset, STATE(3880), 1, sym_comment, - [118512] = 3, + [118872] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8396), 1, + ACTIONS(8561), 1, anon_sym_ATendvolt, STATE(3881), 1, sym_comment, - [118522] = 3, + [118882] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8398), 1, + ACTIONS(8563), 1, anon_sym_ATendteleport, STATE(3882), 1, sym_comment, - [118532] = 3, + [118892] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8400), 1, + ACTIONS(8565), 1, anon_sym_ATendpersist, STATE(3883), 1, sym_comment, - [118542] = 3, + [118902] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8402), 1, + ACTIONS(8567), 1, anon_sym_ATendwhile, STATE(3884), 1, sym_comment, - [118552] = 3, + [118912] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8404), 1, + ACTIONS(8569), 1, anon_sym_ATendforelse, STATE(3885), 1, sym_comment, - [118562] = 3, + [118922] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8406), 1, + ACTIONS(8571), 1, anon_sym_ATendforeach, STATE(3886), 1, sym_comment, - [118572] = 3, + [118932] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8408), 1, + ACTIONS(8573), 1, anon_sym_ATendfor, STATE(3887), 1, sym_comment, - [118582] = 3, + [118942] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8410), 1, + ACTIONS(8575), 1, aux_sym__custom_token3, STATE(3888), 1, sym_comment, - [118592] = 3, + [118952] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8412), 1, + ACTIONS(8577), 1, anon_sym_ATenderror, STATE(3889), 1, sym_comment, - [118602] = 3, + [118962] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8414), 1, + ACTIONS(8579), 1, anon_sym_ATendif, STATE(3890), 1, sym_comment, - [118612] = 3, + [118972] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8416), 1, + ACTIONS(8581), 1, anon_sym_ATendif, STATE(3891), 1, sym_comment, - [118622] = 3, + [118982] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8418), 1, + ACTIONS(8583), 1, anon_sym_ATendenv, STATE(3892), 1, sym_comment, - [118632] = 3, + [118992] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8420), 1, + ACTIONS(8585), 1, anon_sym_ATendwhile, STATE(3893), 1, sym_comment, - [118642] = 3, + [119002] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8422), 1, + ACTIONS(8587), 1, anon_sym_ATendguest, STATE(3894), 1, sym_comment, - [118652] = 3, + [119012] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8424), 1, + ACTIONS(8589), 1, anon_sym_ATendauth, STATE(3895), 1, sym_comment, - [118662] = 3, + [119022] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8426), 1, + ACTIONS(8591), 1, anon_sym_ATendempty, STATE(3896), 1, sym_comment, - [118672] = 3, + [119032] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8428), 1, + ACTIONS(8593), 1, anon_sym_ATendisset, STATE(3897), 1, sym_comment, - [118682] = 3, + [119042] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8430), 1, + ACTIONS(8595), 1, anon_sym_ATendunless, STATE(3898), 1, sym_comment, - [118692] = 3, + [119052] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8432), 1, + ACTIONS(8597), 1, anon_sym_ATendif, STATE(3899), 1, sym_comment, - [118702] = 3, + [119062] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8434), 1, + ACTIONS(8599), 1, anon_sym_ATendPrependOnce, STATE(3900), 1, sym_comment, - [118712] = 3, + [119072] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8436), 1, + ACTIONS(8601), 1, anon_sym_ATendprepend, STATE(3901), 1, sym_comment, - [118722] = 3, + [119082] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8438), 1, + ACTIONS(8603), 1, anon_sym_ATendPushIf, STATE(3902), 1, sym_comment, - [118732] = 3, + [119092] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8440), 1, + ACTIONS(8605), 1, anon_sym_ATendPushOnce, STATE(3903), 1, sym_comment, - [118742] = 3, + [119102] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8442), 1, + ACTIONS(8607), 1, anon_sym_ATendpush, STATE(3904), 1, sym_comment, - [118752] = 3, + [119112] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8444), 1, + ACTIONS(8609), 1, anon_sym_ATendpersist, STATE(3905), 1, sym_comment, - [118762] = 3, + [119122] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8446), 1, + ACTIONS(8611), 1, anon_sym_ATendteleport, STATE(3906), 1, sym_comment, - [118772] = 3, + [119132] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8448), 1, + ACTIONS(8613), 1, anon_sym_ATendsection, STATE(3907), 1, sym_comment, - [118782] = 3, + [119142] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8450), 1, + ACTIONS(8615), 1, anon_sym_ATendfragment, STATE(3908), 1, sym_comment, - [118792] = 3, + [119152] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8452), 1, + ACTIONS(8617), 1, anon_sym_ATendvolt, STATE(3909), 1, sym_comment, - [118802] = 3, + [119162] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8454), 1, + ACTIONS(8619), 1, anon_sym_ATendfragment, STATE(3910), 1, sym_comment, - [118812] = 3, + [119172] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8456), 1, + ACTIONS(8621), 1, anon_sym_ATendsection, STATE(3911), 1, sym_comment, - [118822] = 3, + [119182] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8458), 1, + ACTIONS(8623), 1, anon_sym_ATendpush, STATE(3912), 1, sym_comment, - [118832] = 3, + [119192] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8460), 1, + ACTIONS(8625), 1, anon_sym_ATendPushOnce, STATE(3913), 1, sym_comment, - [118842] = 3, + [119202] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8462), 1, + ACTIONS(8627), 1, anon_sym_ATendPushIf, STATE(3914), 1, sym_comment, - [118852] = 3, + [119212] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8464), 1, + ACTIONS(8629), 1, anon_sym_ATendprepend, STATE(3915), 1, sym_comment, - [118862] = 3, + [119222] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8466), 1, + ACTIONS(8631), 1, anon_sym_ATendvolt, STATE(3916), 1, sym_comment, - [118872] = 3, + [119232] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8468), 1, + ACTIONS(8633), 1, anon_sym_ATendteleport, STATE(3917), 1, sym_comment, - [118882] = 3, + [119242] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8470), 1, + ACTIONS(8635), 1, anon_sym_ATendpersist, STATE(3918), 1, sym_comment, - [118892] = 3, + [119252] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8472), 1, + ACTIONS(8637), 1, anon_sym_ATendwhile, STATE(3919), 1, sym_comment, - [118902] = 3, + [119262] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8474), 1, + ACTIONS(8639), 1, anon_sym_ATendforelse, STATE(3920), 1, sym_comment, - [118912] = 3, + [119272] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8476), 1, + ACTIONS(8641), 1, anon_sym_ATendforeach, STATE(3921), 1, sym_comment, - [118922] = 3, + [119282] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8478), 1, + ACTIONS(8643), 1, anon_sym_ATendfor, STATE(3922), 1, sym_comment, - [118932] = 3, + [119292] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8480), 1, + ACTIONS(8645), 1, aux_sym__custom_token3, STATE(3923), 1, sym_comment, - [118942] = 3, + [119302] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8482), 1, + ACTIONS(8647), 1, anon_sym_ATenderror, STATE(3924), 1, sym_comment, - [118952] = 3, + [119312] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8484), 1, + ACTIONS(8649), 1, anon_sym_ATendif, STATE(3925), 1, sym_comment, - [118962] = 3, + [119322] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8486), 1, + ACTIONS(8651), 1, anon_sym_ATendif, STATE(3926), 1, sym_comment, - [118972] = 3, + [119332] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8488), 1, + ACTIONS(8653), 1, anon_sym_ATendenv, STATE(3927), 1, sym_comment, - [118982] = 3, + [119342] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8490), 1, + ACTIONS(8655), 1, anon_sym_ATendPrependOnce, STATE(3928), 1, sym_comment, - [118992] = 3, + [119352] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8492), 1, + ACTIONS(8657), 1, anon_sym_ATendguest, STATE(3929), 1, sym_comment, - [119002] = 3, + [119362] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8494), 1, + ACTIONS(8659), 1, anon_sym_ATendauth, STATE(3930), 1, sym_comment, - [119012] = 3, + [119372] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8496), 1, + ACTIONS(8661), 1, anon_sym_ATendempty, STATE(3931), 1, sym_comment, - [119022] = 3, + [119382] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8498), 1, + ACTIONS(8663), 1, anon_sym_ATendisset, STATE(3932), 1, sym_comment, - [119032] = 3, + [119392] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8500), 1, + ACTIONS(8665), 1, anon_sym_ATendunless, STATE(3933), 1, sym_comment, - [119042] = 3, + [119402] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8502), 1, + ACTIONS(8667), 1, anon_sym_ATendif, STATE(3934), 1, sym_comment, - [119052] = 3, + [119412] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8504), 1, + ACTIONS(8669), 1, anon_sym_ATendPrependOnce, STATE(3935), 1, sym_comment, - [119062] = 3, + [119422] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8506), 1, + ACTIONS(8671), 1, anon_sym_ATendprepend, STATE(3936), 1, sym_comment, - [119072] = 3, + [119432] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8508), 1, + ACTIONS(8673), 1, anon_sym_ATendPushIf, STATE(3937), 1, sym_comment, - [119082] = 3, + [119442] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8510), 1, + ACTIONS(8675), 1, anon_sym_ATendPushOnce, STATE(3938), 1, sym_comment, - [119092] = 3, + [119452] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8512), 1, + ACTIONS(8677), 1, anon_sym_ATendpush, STATE(3939), 1, sym_comment, - [119102] = 3, + [119462] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8514), 1, + ACTIONS(8679), 1, anon_sym_ATendif, STATE(3940), 1, sym_comment, - [119112] = 3, + [119472] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8516), 1, + ACTIONS(8681), 1, anon_sym_ATendempty, STATE(3941), 1, sym_comment, - [119122] = 3, + [119482] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8518), 1, + ACTIONS(8683), 1, anon_sym_ATendsection, STATE(3942), 1, sym_comment, - [119132] = 3, + [119492] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8520), 1, + ACTIONS(8685), 1, anon_sym_ATendfragment, STATE(3943), 1, sym_comment, - [119142] = 3, + [119502] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8522), 1, + ACTIONS(8687), 1, anon_sym_ATendvolt, STATE(3944), 1, sym_comment, - [119152] = 3, + [119512] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8524), 1, + ACTIONS(8689), 1, anon_sym_ATendteleport, STATE(3945), 1, sym_comment, - [119162] = 3, + [119522] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8526), 1, + ACTIONS(8691), 1, anon_sym_ATendpersist, STATE(3946), 1, sym_comment, - [119172] = 3, + [119532] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8528), 1, + ACTIONS(8693), 1, anon_sym_ATendwhile, STATE(3947), 1, sym_comment, - [119182] = 3, + [119542] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8530), 1, + ACTIONS(8695), 1, anon_sym_ATendforelse, STATE(3948), 1, sym_comment, - [119192] = 3, + [119552] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8532), 1, + ACTIONS(8697), 1, anon_sym_ATendforeach, STATE(3949), 1, sym_comment, - [119202] = 3, + [119562] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8534), 1, + ACTIONS(8699), 1, anon_sym_ATendfor, STATE(3950), 1, sym_comment, - [119212] = 3, + [119572] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8536), 1, + ACTIONS(8701), 1, aux_sym__custom_token3, STATE(3951), 1, sym_comment, - [119222] = 3, + [119582] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8538), 1, + ACTIONS(8703), 1, anon_sym_ATenderror, STATE(3952), 1, sym_comment, - [119232] = 3, + [119592] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8540), 1, + ACTIONS(8705), 1, anon_sym_ATendif, STATE(3953), 1, sym_comment, - [119242] = 3, + [119602] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8542), 1, + ACTIONS(8707), 1, anon_sym_ATendif, STATE(3954), 1, sym_comment, - [119252] = 3, + [119612] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8544), 1, + ACTIONS(8709), 1, anon_sym_ATendenv, STATE(3955), 1, sym_comment, - [119262] = 3, + [119622] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8546), 1, + ACTIONS(8711), 1, anon_sym_ATendguest, STATE(3956), 1, sym_comment, - [119272] = 3, + [119632] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8548), 1, + ACTIONS(8713), 1, anon_sym_ATendauth, STATE(3957), 1, sym_comment, - [119282] = 3, + [119642] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8550), 1, + ACTIONS(8715), 1, anon_sym_ATendempty, STATE(3958), 1, sym_comment, - [119292] = 3, + [119652] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8552), 1, + ACTIONS(8717), 1, anon_sym_ATendisset, STATE(3959), 1, sym_comment, - [119302] = 3, + [119662] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8554), 1, + ACTIONS(8719), 1, anon_sym_ATendunless, STATE(3960), 1, sym_comment, - [119312] = 3, + [119672] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8556), 1, + ACTIONS(8721), 1, anon_sym_ATendif, STATE(3961), 1, sym_comment, - [119322] = 3, + [119682] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8558), 1, + ACTIONS(8723), 1, anon_sym_ATendPrependOnce, STATE(3962), 1, sym_comment, - [119332] = 3, + [119692] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8560), 1, + ACTIONS(8725), 1, anon_sym_ATendprepend, STATE(3963), 1, sym_comment, - [119342] = 3, + [119702] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8562), 1, + ACTIONS(8727), 1, anon_sym_ATendPushIf, STATE(3964), 1, sym_comment, - [119352] = 3, + [119712] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8564), 1, + ACTIONS(8729), 1, anon_sym_ATendPushOnce, STATE(3965), 1, sym_comment, - [119362] = 3, + [119722] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8566), 1, + ACTIONS(8731), 1, anon_sym_ATendpush, STATE(3966), 1, sym_comment, - [119372] = 3, + [119732] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8568), 1, + ACTIONS(8733), 1, anon_sym_ATendsection, STATE(3967), 1, sym_comment, - [119382] = 3, + [119742] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8570), 1, + ACTIONS(8735), 1, anon_sym_ATendfragment, STATE(3968), 1, sym_comment, - [119392] = 3, + [119752] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8572), 1, + ACTIONS(8737), 1, anon_sym_ATendvolt, STATE(3969), 1, sym_comment, - [119402] = 3, + [119762] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8574), 1, + ACTIONS(8739), 1, anon_sym_ATendteleport, STATE(3970), 1, sym_comment, - [119412] = 3, + [119772] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8576), 1, + ACTIONS(8741), 1, anon_sym_ATendpersist, STATE(3971), 1, sym_comment, - [119422] = 3, + [119782] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8578), 1, + ACTIONS(8743), 1, anon_sym_ATendwhile, STATE(3972), 1, sym_comment, - [119432] = 3, + [119792] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8580), 1, + ACTIONS(8745), 1, anon_sym_ATendforelse, STATE(3973), 1, sym_comment, - [119442] = 3, + [119802] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8582), 1, + ACTIONS(8747), 1, anon_sym_ATendforeach, STATE(3974), 1, sym_comment, - [119452] = 3, + [119812] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8584), 1, + ACTIONS(8749), 1, anon_sym_ATendfor, STATE(3975), 1, sym_comment, - [119462] = 3, + [119822] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8586), 1, + ACTIONS(8751), 1, aux_sym__custom_token3, STATE(3976), 1, sym_comment, - [119472] = 3, + [119832] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8588), 1, + ACTIONS(8753), 1, anon_sym_ATenderror, STATE(3977), 1, sym_comment, - [119482] = 3, + [119842] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8590), 1, + ACTIONS(8755), 1, anon_sym_ATendif, STATE(3978), 1, sym_comment, - [119492] = 3, + [119852] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8592), 1, + ACTIONS(8757), 1, anon_sym_ATendif, STATE(3979), 1, sym_comment, - [119502] = 3, + [119862] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8594), 1, + ACTIONS(8759), 1, anon_sym_ATendenv, STATE(3980), 1, sym_comment, - [119512] = 3, + [119872] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8596), 1, + ACTIONS(8761), 1, anon_sym_ATendguest, STATE(3981), 1, sym_comment, - [119522] = 3, + [119882] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8598), 1, + ACTIONS(8763), 1, anon_sym_ATendauth, STATE(3982), 1, sym_comment, - [119532] = 3, + [119892] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8600), 1, + ACTIONS(8765), 1, anon_sym_ATendempty, STATE(3983), 1, sym_comment, - [119542] = 1, - ACTIONS(8602), 1, + [119902] = 1, + ACTIONS(8767), 1, ts_builtin_sym_end, - [119546] = 1, - ACTIONS(8604), 1, + [119906] = 1, + ACTIONS(8769), 1, ts_builtin_sym_end, }; @@ -162704,1789 +163285,1789 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2200)] = 93797, [SMALL_STATE(2201)] = 93849, [SMALL_STATE(2202)] = 93901, - [SMALL_STATE(2203)] = 93928, - [SMALL_STATE(2204)] = 93955, - [SMALL_STATE(2205)] = 93982, - [SMALL_STATE(2206)] = 94009, - [SMALL_STATE(2207)] = 94036, - [SMALL_STATE(2208)] = 94063, - [SMALL_STATE(2209)] = 94090, - [SMALL_STATE(2210)] = 94117, - [SMALL_STATE(2211)] = 94144, - [SMALL_STATE(2212)] = 94171, - [SMALL_STATE(2213)] = 94198, - [SMALL_STATE(2214)] = 94225, - [SMALL_STATE(2215)] = 94252, - [SMALL_STATE(2216)] = 94279, - [SMALL_STATE(2217)] = 94306, - [SMALL_STATE(2218)] = 94333, - [SMALL_STATE(2219)] = 94360, - [SMALL_STATE(2220)] = 94387, - [SMALL_STATE(2221)] = 94414, - [SMALL_STATE(2222)] = 94441, - [SMALL_STATE(2223)] = 94468, - [SMALL_STATE(2224)] = 94495, - [SMALL_STATE(2225)] = 94522, - [SMALL_STATE(2226)] = 94549, - [SMALL_STATE(2227)] = 94576, - [SMALL_STATE(2228)] = 94603, - [SMALL_STATE(2229)] = 94630, - [SMALL_STATE(2230)] = 94657, - [SMALL_STATE(2231)] = 94684, - [SMALL_STATE(2232)] = 94705, - [SMALL_STATE(2233)] = 94726, - [SMALL_STATE(2234)] = 94747, - [SMALL_STATE(2235)] = 94768, - [SMALL_STATE(2236)] = 94789, - [SMALL_STATE(2237)] = 94810, - [SMALL_STATE(2238)] = 94831, - [SMALL_STATE(2239)] = 94852, - [SMALL_STATE(2240)] = 94873, - [SMALL_STATE(2241)] = 94894, - [SMALL_STATE(2242)] = 94913, - [SMALL_STATE(2243)] = 94934, - [SMALL_STATE(2244)] = 94955, - [SMALL_STATE(2245)] = 94976, - [SMALL_STATE(2246)] = 94997, - [SMALL_STATE(2247)] = 95018, - [SMALL_STATE(2248)] = 95039, - [SMALL_STATE(2249)] = 95060, - [SMALL_STATE(2250)] = 95081, - [SMALL_STATE(2251)] = 95102, - [SMALL_STATE(2252)] = 95123, - [SMALL_STATE(2253)] = 95144, - [SMALL_STATE(2254)] = 95165, - [SMALL_STATE(2255)] = 95184, - [SMALL_STATE(2256)] = 95205, - [SMALL_STATE(2257)] = 95226, - [SMALL_STATE(2258)] = 95247, - [SMALL_STATE(2259)] = 95268, - [SMALL_STATE(2260)] = 95289, - [SMALL_STATE(2261)] = 95310, - [SMALL_STATE(2262)] = 95331, - [SMALL_STATE(2263)] = 95352, - [SMALL_STATE(2264)] = 95373, - [SMALL_STATE(2265)] = 95394, - [SMALL_STATE(2266)] = 95415, - [SMALL_STATE(2267)] = 95436, - [SMALL_STATE(2268)] = 95457, - [SMALL_STATE(2269)] = 95478, - [SMALL_STATE(2270)] = 95499, - [SMALL_STATE(2271)] = 95520, - [SMALL_STATE(2272)] = 95541, - [SMALL_STATE(2273)] = 95562, - [SMALL_STATE(2274)] = 95583, - [SMALL_STATE(2275)] = 95604, - [SMALL_STATE(2276)] = 95625, - [SMALL_STATE(2277)] = 95646, - [SMALL_STATE(2278)] = 95667, - [SMALL_STATE(2279)] = 95688, - [SMALL_STATE(2280)] = 95709, - [SMALL_STATE(2281)] = 95730, - [SMALL_STATE(2282)] = 95751, - [SMALL_STATE(2283)] = 95772, - [SMALL_STATE(2284)] = 95793, - [SMALL_STATE(2285)] = 95814, - [SMALL_STATE(2286)] = 95835, - [SMALL_STATE(2287)] = 95856, - [SMALL_STATE(2288)] = 95877, - [SMALL_STATE(2289)] = 95898, - [SMALL_STATE(2290)] = 95919, - [SMALL_STATE(2291)] = 95940, - [SMALL_STATE(2292)] = 95961, - [SMALL_STATE(2293)] = 95982, - [SMALL_STATE(2294)] = 96003, - [SMALL_STATE(2295)] = 96024, - [SMALL_STATE(2296)] = 96045, - [SMALL_STATE(2297)] = 96066, - [SMALL_STATE(2298)] = 96087, - [SMALL_STATE(2299)] = 96108, - [SMALL_STATE(2300)] = 96129, - [SMALL_STATE(2301)] = 96150, - [SMALL_STATE(2302)] = 96171, - [SMALL_STATE(2303)] = 96192, - [SMALL_STATE(2304)] = 96213, - [SMALL_STATE(2305)] = 96234, - [SMALL_STATE(2306)] = 96255, - [SMALL_STATE(2307)] = 96276, - [SMALL_STATE(2308)] = 96297, - [SMALL_STATE(2309)] = 96318, - [SMALL_STATE(2310)] = 96339, - [SMALL_STATE(2311)] = 96360, - [SMALL_STATE(2312)] = 96381, - [SMALL_STATE(2313)] = 96402, - [SMALL_STATE(2314)] = 96423, - [SMALL_STATE(2315)] = 96444, - [SMALL_STATE(2316)] = 96465, - [SMALL_STATE(2317)] = 96486, - [SMALL_STATE(2318)] = 96507, - [SMALL_STATE(2319)] = 96528, - [SMALL_STATE(2320)] = 96549, - [SMALL_STATE(2321)] = 96570, - [SMALL_STATE(2322)] = 96591, - [SMALL_STATE(2323)] = 96612, - [SMALL_STATE(2324)] = 96633, - [SMALL_STATE(2325)] = 96654, - [SMALL_STATE(2326)] = 96675, - [SMALL_STATE(2327)] = 96696, - [SMALL_STATE(2328)] = 96717, - [SMALL_STATE(2329)] = 96738, - [SMALL_STATE(2330)] = 96759, - [SMALL_STATE(2331)] = 96778, - [SMALL_STATE(2332)] = 96799, - [SMALL_STATE(2333)] = 96818, - [SMALL_STATE(2334)] = 96839, - [SMALL_STATE(2335)] = 96860, - [SMALL_STATE(2336)] = 96881, - [SMALL_STATE(2337)] = 96902, - [SMALL_STATE(2338)] = 96923, - [SMALL_STATE(2339)] = 96944, - [SMALL_STATE(2340)] = 96965, - [SMALL_STATE(2341)] = 96986, - [SMALL_STATE(2342)] = 97007, - [SMALL_STATE(2343)] = 97028, - [SMALL_STATE(2344)] = 97049, - [SMALL_STATE(2345)] = 97070, - [SMALL_STATE(2346)] = 97091, - [SMALL_STATE(2347)] = 97112, - [SMALL_STATE(2348)] = 97133, - [SMALL_STATE(2349)] = 97154, - [SMALL_STATE(2350)] = 97175, - [SMALL_STATE(2351)] = 97196, - [SMALL_STATE(2352)] = 97217, - [SMALL_STATE(2353)] = 97238, - [SMALL_STATE(2354)] = 97259, - [SMALL_STATE(2355)] = 97280, - [SMALL_STATE(2356)] = 97301, - [SMALL_STATE(2357)] = 97322, - [SMALL_STATE(2358)] = 97343, - [SMALL_STATE(2359)] = 97364, - [SMALL_STATE(2360)] = 97385, - [SMALL_STATE(2361)] = 97406, - [SMALL_STATE(2362)] = 97427, - [SMALL_STATE(2363)] = 97448, - [SMALL_STATE(2364)] = 97469, - [SMALL_STATE(2365)] = 97490, - [SMALL_STATE(2366)] = 97511, - [SMALL_STATE(2367)] = 97532, - [SMALL_STATE(2368)] = 97553, - [SMALL_STATE(2369)] = 97574, - [SMALL_STATE(2370)] = 97595, - [SMALL_STATE(2371)] = 97616, - [SMALL_STATE(2372)] = 97637, - [SMALL_STATE(2373)] = 97658, - [SMALL_STATE(2374)] = 97679, - [SMALL_STATE(2375)] = 97700, - [SMALL_STATE(2376)] = 97721, - [SMALL_STATE(2377)] = 97742, - [SMALL_STATE(2378)] = 97763, - [SMALL_STATE(2379)] = 97784, - [SMALL_STATE(2380)] = 97805, - [SMALL_STATE(2381)] = 97826, - [SMALL_STATE(2382)] = 97847, - [SMALL_STATE(2383)] = 97869, - [SMALL_STATE(2384)] = 97891, - [SMALL_STATE(2385)] = 97913, - [SMALL_STATE(2386)] = 97935, - [SMALL_STATE(2387)] = 97957, - [SMALL_STATE(2388)] = 97979, - [SMALL_STATE(2389)] = 98001, - [SMALL_STATE(2390)] = 98023, - [SMALL_STATE(2391)] = 98045, - [SMALL_STATE(2392)] = 98067, - [SMALL_STATE(2393)] = 98089, - [SMALL_STATE(2394)] = 98111, - [SMALL_STATE(2395)] = 98133, - [SMALL_STATE(2396)] = 98155, - [SMALL_STATE(2397)] = 98177, - [SMALL_STATE(2398)] = 98199, - [SMALL_STATE(2399)] = 98221, - [SMALL_STATE(2400)] = 98243, - [SMALL_STATE(2401)] = 98265, - [SMALL_STATE(2402)] = 98285, - [SMALL_STATE(2403)] = 98307, - [SMALL_STATE(2404)] = 98329, - [SMALL_STATE(2405)] = 98351, - [SMALL_STATE(2406)] = 98373, - [SMALL_STATE(2407)] = 98395, - [SMALL_STATE(2408)] = 98417, - [SMALL_STATE(2409)] = 98439, - [SMALL_STATE(2410)] = 98461, - [SMALL_STATE(2411)] = 98483, - [SMALL_STATE(2412)] = 98505, - [SMALL_STATE(2413)] = 98527, - [SMALL_STATE(2414)] = 98549, - [SMALL_STATE(2415)] = 98571, - [SMALL_STATE(2416)] = 98593, - [SMALL_STATE(2417)] = 98615, - [SMALL_STATE(2418)] = 98637, - [SMALL_STATE(2419)] = 98659, - [SMALL_STATE(2420)] = 98681, - [SMALL_STATE(2421)] = 98703, - [SMALL_STATE(2422)] = 98725, - [SMALL_STATE(2423)] = 98747, - [SMALL_STATE(2424)] = 98769, - [SMALL_STATE(2425)] = 98791, - [SMALL_STATE(2426)] = 98809, - [SMALL_STATE(2427)] = 98831, - [SMALL_STATE(2428)] = 98853, - [SMALL_STATE(2429)] = 98875, - [SMALL_STATE(2430)] = 98897, - [SMALL_STATE(2431)] = 98919, - [SMALL_STATE(2432)] = 98939, - [SMALL_STATE(2433)] = 98961, - [SMALL_STATE(2434)] = 98983, - [SMALL_STATE(2435)] = 99005, - [SMALL_STATE(2436)] = 99027, - [SMALL_STATE(2437)] = 99049, - [SMALL_STATE(2438)] = 99071, - [SMALL_STATE(2439)] = 99093, - [SMALL_STATE(2440)] = 99115, - [SMALL_STATE(2441)] = 99137, - [SMALL_STATE(2442)] = 99159, - [SMALL_STATE(2443)] = 99181, - [SMALL_STATE(2444)] = 99203, - [SMALL_STATE(2445)] = 99225, - [SMALL_STATE(2446)] = 99247, - [SMALL_STATE(2447)] = 99269, - [SMALL_STATE(2448)] = 99291, - [SMALL_STATE(2449)] = 99313, - [SMALL_STATE(2450)] = 99335, - [SMALL_STATE(2451)] = 99357, - [SMALL_STATE(2452)] = 99379, - [SMALL_STATE(2453)] = 99401, - [SMALL_STATE(2454)] = 99423, - [SMALL_STATE(2455)] = 99445, - [SMALL_STATE(2456)] = 99467, - [SMALL_STATE(2457)] = 99489, - [SMALL_STATE(2458)] = 99511, - [SMALL_STATE(2459)] = 99533, - [SMALL_STATE(2460)] = 99555, - [SMALL_STATE(2461)] = 99577, - [SMALL_STATE(2462)] = 99599, - [SMALL_STATE(2463)] = 99621, - [SMALL_STATE(2464)] = 99643, - [SMALL_STATE(2465)] = 99665, - [SMALL_STATE(2466)] = 99687, - [SMALL_STATE(2467)] = 99709, - [SMALL_STATE(2468)] = 99731, - [SMALL_STATE(2469)] = 99753, - [SMALL_STATE(2470)] = 99775, - [SMALL_STATE(2471)] = 99797, - [SMALL_STATE(2472)] = 99819, - [SMALL_STATE(2473)] = 99841, - [SMALL_STATE(2474)] = 99863, - [SMALL_STATE(2475)] = 99885, - [SMALL_STATE(2476)] = 99907, - [SMALL_STATE(2477)] = 99929, - [SMALL_STATE(2478)] = 99951, - [SMALL_STATE(2479)] = 99973, - [SMALL_STATE(2480)] = 99995, - [SMALL_STATE(2481)] = 100017, - [SMALL_STATE(2482)] = 100039, - [SMALL_STATE(2483)] = 100061, - [SMALL_STATE(2484)] = 100083, - [SMALL_STATE(2485)] = 100105, - [SMALL_STATE(2486)] = 100127, - [SMALL_STATE(2487)] = 100149, - [SMALL_STATE(2488)] = 100171, - [SMALL_STATE(2489)] = 100193, - [SMALL_STATE(2490)] = 100215, - [SMALL_STATE(2491)] = 100237, - [SMALL_STATE(2492)] = 100259, - [SMALL_STATE(2493)] = 100281, - [SMALL_STATE(2494)] = 100303, - [SMALL_STATE(2495)] = 100325, - [SMALL_STATE(2496)] = 100347, - [SMALL_STATE(2497)] = 100369, - [SMALL_STATE(2498)] = 100391, - [SMALL_STATE(2499)] = 100413, - [SMALL_STATE(2500)] = 100435, - [SMALL_STATE(2501)] = 100457, - [SMALL_STATE(2502)] = 100479, - [SMALL_STATE(2503)] = 100501, - [SMALL_STATE(2504)] = 100523, - [SMALL_STATE(2505)] = 100545, - [SMALL_STATE(2506)] = 100567, - [SMALL_STATE(2507)] = 100589, - [SMALL_STATE(2508)] = 100611, - [SMALL_STATE(2509)] = 100633, - [SMALL_STATE(2510)] = 100648, - [SMALL_STATE(2511)] = 100663, - [SMALL_STATE(2512)] = 100678, - [SMALL_STATE(2513)] = 100693, - [SMALL_STATE(2514)] = 100708, - [SMALL_STATE(2515)] = 100723, - [SMALL_STATE(2516)] = 100738, - [SMALL_STATE(2517)] = 100753, - [SMALL_STATE(2518)] = 100769, - [SMALL_STATE(2519)] = 100785, - [SMALL_STATE(2520)] = 100801, - [SMALL_STATE(2521)] = 100817, - [SMALL_STATE(2522)] = 100833, - [SMALL_STATE(2523)] = 100849, - [SMALL_STATE(2524)] = 100865, - [SMALL_STATE(2525)] = 100881, - [SMALL_STATE(2526)] = 100897, - [SMALL_STATE(2527)] = 100913, - [SMALL_STATE(2528)] = 100929, - [SMALL_STATE(2529)] = 100945, - [SMALL_STATE(2530)] = 100961, - [SMALL_STATE(2531)] = 100977, - [SMALL_STATE(2532)] = 100993, - [SMALL_STATE(2533)] = 101009, - [SMALL_STATE(2534)] = 101025, - [SMALL_STATE(2535)] = 101041, - [SMALL_STATE(2536)] = 101057, - [SMALL_STATE(2537)] = 101073, - [SMALL_STATE(2538)] = 101089, - [SMALL_STATE(2539)] = 101105, - [SMALL_STATE(2540)] = 101121, - [SMALL_STATE(2541)] = 101137, - [SMALL_STATE(2542)] = 101153, - [SMALL_STATE(2543)] = 101169, - [SMALL_STATE(2544)] = 101185, - [SMALL_STATE(2545)] = 101201, - [SMALL_STATE(2546)] = 101217, - [SMALL_STATE(2547)] = 101233, - [SMALL_STATE(2548)] = 101249, - [SMALL_STATE(2549)] = 101265, - [SMALL_STATE(2550)] = 101281, - [SMALL_STATE(2551)] = 101297, - [SMALL_STATE(2552)] = 101313, - [SMALL_STATE(2553)] = 101329, - [SMALL_STATE(2554)] = 101345, - [SMALL_STATE(2555)] = 101361, - [SMALL_STATE(2556)] = 101377, - [SMALL_STATE(2557)] = 101393, - [SMALL_STATE(2558)] = 101409, - [SMALL_STATE(2559)] = 101425, - [SMALL_STATE(2560)] = 101441, - [SMALL_STATE(2561)] = 101457, - [SMALL_STATE(2562)] = 101473, - [SMALL_STATE(2563)] = 101489, - [SMALL_STATE(2564)] = 101505, - [SMALL_STATE(2565)] = 101521, - [SMALL_STATE(2566)] = 101537, - [SMALL_STATE(2567)] = 101553, - [SMALL_STATE(2568)] = 101569, - [SMALL_STATE(2569)] = 101585, - [SMALL_STATE(2570)] = 101601, - [SMALL_STATE(2571)] = 101617, - [SMALL_STATE(2572)] = 101633, - [SMALL_STATE(2573)] = 101649, - [SMALL_STATE(2574)] = 101665, - [SMALL_STATE(2575)] = 101681, - [SMALL_STATE(2576)] = 101697, - [SMALL_STATE(2577)] = 101713, - [SMALL_STATE(2578)] = 101729, - [SMALL_STATE(2579)] = 101745, - [SMALL_STATE(2580)] = 101761, - [SMALL_STATE(2581)] = 101777, - [SMALL_STATE(2582)] = 101793, - [SMALL_STATE(2583)] = 101809, - [SMALL_STATE(2584)] = 101825, - [SMALL_STATE(2585)] = 101841, - [SMALL_STATE(2586)] = 101857, - [SMALL_STATE(2587)] = 101873, - [SMALL_STATE(2588)] = 101889, - [SMALL_STATE(2589)] = 101905, - [SMALL_STATE(2590)] = 101921, - [SMALL_STATE(2591)] = 101937, - [SMALL_STATE(2592)] = 101953, - [SMALL_STATE(2593)] = 101969, - [SMALL_STATE(2594)] = 101985, - [SMALL_STATE(2595)] = 102001, - [SMALL_STATE(2596)] = 102017, - [SMALL_STATE(2597)] = 102033, - [SMALL_STATE(2598)] = 102049, - [SMALL_STATE(2599)] = 102065, - [SMALL_STATE(2600)] = 102081, - [SMALL_STATE(2601)] = 102097, - [SMALL_STATE(2602)] = 102113, - [SMALL_STATE(2603)] = 102129, - [SMALL_STATE(2604)] = 102145, - [SMALL_STATE(2605)] = 102161, - [SMALL_STATE(2606)] = 102177, - [SMALL_STATE(2607)] = 102193, - [SMALL_STATE(2608)] = 102209, - [SMALL_STATE(2609)] = 102225, - [SMALL_STATE(2610)] = 102241, - [SMALL_STATE(2611)] = 102257, - [SMALL_STATE(2612)] = 102273, - [SMALL_STATE(2613)] = 102289, - [SMALL_STATE(2614)] = 102305, - [SMALL_STATE(2615)] = 102321, - [SMALL_STATE(2616)] = 102337, - [SMALL_STATE(2617)] = 102353, - [SMALL_STATE(2618)] = 102369, - [SMALL_STATE(2619)] = 102385, - [SMALL_STATE(2620)] = 102401, - [SMALL_STATE(2621)] = 102417, - [SMALL_STATE(2622)] = 102433, - [SMALL_STATE(2623)] = 102449, - [SMALL_STATE(2624)] = 102465, - [SMALL_STATE(2625)] = 102481, - [SMALL_STATE(2626)] = 102497, - [SMALL_STATE(2627)] = 102513, - [SMALL_STATE(2628)] = 102529, - [SMALL_STATE(2629)] = 102545, - [SMALL_STATE(2630)] = 102561, - [SMALL_STATE(2631)] = 102577, - [SMALL_STATE(2632)] = 102593, - [SMALL_STATE(2633)] = 102609, - [SMALL_STATE(2634)] = 102625, - [SMALL_STATE(2635)] = 102641, - [SMALL_STATE(2636)] = 102657, - [SMALL_STATE(2637)] = 102673, - [SMALL_STATE(2638)] = 102689, - [SMALL_STATE(2639)] = 102705, - [SMALL_STATE(2640)] = 102721, - [SMALL_STATE(2641)] = 102737, - [SMALL_STATE(2642)] = 102753, - [SMALL_STATE(2643)] = 102769, - [SMALL_STATE(2644)] = 102785, - [SMALL_STATE(2645)] = 102801, - [SMALL_STATE(2646)] = 102817, - [SMALL_STATE(2647)] = 102833, - [SMALL_STATE(2648)] = 102849, - [SMALL_STATE(2649)] = 102865, - [SMALL_STATE(2650)] = 102881, - [SMALL_STATE(2651)] = 102897, - [SMALL_STATE(2652)] = 102913, - [SMALL_STATE(2653)] = 102929, - [SMALL_STATE(2654)] = 102945, - [SMALL_STATE(2655)] = 102961, - [SMALL_STATE(2656)] = 102977, - [SMALL_STATE(2657)] = 102993, - [SMALL_STATE(2658)] = 103009, - [SMALL_STATE(2659)] = 103025, - [SMALL_STATE(2660)] = 103041, - [SMALL_STATE(2661)] = 103057, - [SMALL_STATE(2662)] = 103073, - [SMALL_STATE(2663)] = 103089, - [SMALL_STATE(2664)] = 103105, - [SMALL_STATE(2665)] = 103121, - [SMALL_STATE(2666)] = 103137, - [SMALL_STATE(2667)] = 103153, - [SMALL_STATE(2668)] = 103169, - [SMALL_STATE(2669)] = 103185, - [SMALL_STATE(2670)] = 103201, - [SMALL_STATE(2671)] = 103217, - [SMALL_STATE(2672)] = 103233, - [SMALL_STATE(2673)] = 103249, - [SMALL_STATE(2674)] = 103265, - [SMALL_STATE(2675)] = 103281, - [SMALL_STATE(2676)] = 103297, - [SMALL_STATE(2677)] = 103313, - [SMALL_STATE(2678)] = 103329, - [SMALL_STATE(2679)] = 103345, - [SMALL_STATE(2680)] = 103361, - [SMALL_STATE(2681)] = 103377, - [SMALL_STATE(2682)] = 103393, - [SMALL_STATE(2683)] = 103409, - [SMALL_STATE(2684)] = 103425, - [SMALL_STATE(2685)] = 103441, - [SMALL_STATE(2686)] = 103457, - [SMALL_STATE(2687)] = 103473, - [SMALL_STATE(2688)] = 103489, - [SMALL_STATE(2689)] = 103505, - [SMALL_STATE(2690)] = 103521, - [SMALL_STATE(2691)] = 103537, - [SMALL_STATE(2692)] = 103553, - [SMALL_STATE(2693)] = 103569, - [SMALL_STATE(2694)] = 103585, - [SMALL_STATE(2695)] = 103601, - [SMALL_STATE(2696)] = 103617, - [SMALL_STATE(2697)] = 103633, - [SMALL_STATE(2698)] = 103649, - [SMALL_STATE(2699)] = 103665, - [SMALL_STATE(2700)] = 103681, - [SMALL_STATE(2701)] = 103697, - [SMALL_STATE(2702)] = 103713, - [SMALL_STATE(2703)] = 103729, - [SMALL_STATE(2704)] = 103745, - [SMALL_STATE(2705)] = 103761, - [SMALL_STATE(2706)] = 103777, - [SMALL_STATE(2707)] = 103793, - [SMALL_STATE(2708)] = 103809, - [SMALL_STATE(2709)] = 103825, - [SMALL_STATE(2710)] = 103841, - [SMALL_STATE(2711)] = 103857, - [SMALL_STATE(2712)] = 103873, - [SMALL_STATE(2713)] = 103889, - [SMALL_STATE(2714)] = 103905, - [SMALL_STATE(2715)] = 103921, - [SMALL_STATE(2716)] = 103937, - [SMALL_STATE(2717)] = 103953, - [SMALL_STATE(2718)] = 103969, - [SMALL_STATE(2719)] = 103985, - [SMALL_STATE(2720)] = 104001, - [SMALL_STATE(2721)] = 104017, - [SMALL_STATE(2722)] = 104033, - [SMALL_STATE(2723)] = 104049, - [SMALL_STATE(2724)] = 104065, - [SMALL_STATE(2725)] = 104081, - [SMALL_STATE(2726)] = 104097, - [SMALL_STATE(2727)] = 104113, - [SMALL_STATE(2728)] = 104129, - [SMALL_STATE(2729)] = 104145, - [SMALL_STATE(2730)] = 104161, - [SMALL_STATE(2731)] = 104177, - [SMALL_STATE(2732)] = 104193, - [SMALL_STATE(2733)] = 104209, - [SMALL_STATE(2734)] = 104225, - [SMALL_STATE(2735)] = 104241, - [SMALL_STATE(2736)] = 104257, - [SMALL_STATE(2737)] = 104273, - [SMALL_STATE(2738)] = 104289, - [SMALL_STATE(2739)] = 104305, - [SMALL_STATE(2740)] = 104321, - [SMALL_STATE(2741)] = 104337, - [SMALL_STATE(2742)] = 104353, - [SMALL_STATE(2743)] = 104369, - [SMALL_STATE(2744)] = 104385, - [SMALL_STATE(2745)] = 104401, - [SMALL_STATE(2746)] = 104417, - [SMALL_STATE(2747)] = 104433, - [SMALL_STATE(2748)] = 104449, - [SMALL_STATE(2749)] = 104465, - [SMALL_STATE(2750)] = 104481, - [SMALL_STATE(2751)] = 104497, - [SMALL_STATE(2752)] = 104513, - [SMALL_STATE(2753)] = 104529, - [SMALL_STATE(2754)] = 104545, - [SMALL_STATE(2755)] = 104561, - [SMALL_STATE(2756)] = 104577, - [SMALL_STATE(2757)] = 104593, - [SMALL_STATE(2758)] = 104609, - [SMALL_STATE(2759)] = 104625, - [SMALL_STATE(2760)] = 104641, - [SMALL_STATE(2761)] = 104657, - [SMALL_STATE(2762)] = 104673, - [SMALL_STATE(2763)] = 104685, - [SMALL_STATE(2764)] = 104701, - [SMALL_STATE(2765)] = 104717, - [SMALL_STATE(2766)] = 104733, - [SMALL_STATE(2767)] = 104749, - [SMALL_STATE(2768)] = 104765, - [SMALL_STATE(2769)] = 104781, - [SMALL_STATE(2770)] = 104797, - [SMALL_STATE(2771)] = 104813, - [SMALL_STATE(2772)] = 104829, - [SMALL_STATE(2773)] = 104841, - [SMALL_STATE(2774)] = 104857, - [SMALL_STATE(2775)] = 104873, - [SMALL_STATE(2776)] = 104889, - [SMALL_STATE(2777)] = 104905, - [SMALL_STATE(2778)] = 104921, - [SMALL_STATE(2779)] = 104937, - [SMALL_STATE(2780)] = 104953, - [SMALL_STATE(2781)] = 104969, - [SMALL_STATE(2782)] = 104985, - [SMALL_STATE(2783)] = 105001, - [SMALL_STATE(2784)] = 105017, - [SMALL_STATE(2785)] = 105033, - [SMALL_STATE(2786)] = 105049, - [SMALL_STATE(2787)] = 105065, - [SMALL_STATE(2788)] = 105081, - [SMALL_STATE(2789)] = 105097, - [SMALL_STATE(2790)] = 105113, - [SMALL_STATE(2791)] = 105129, - [SMALL_STATE(2792)] = 105145, - [SMALL_STATE(2793)] = 105161, - [SMALL_STATE(2794)] = 105177, - [SMALL_STATE(2795)] = 105193, - [SMALL_STATE(2796)] = 105209, - [SMALL_STATE(2797)] = 105225, - [SMALL_STATE(2798)] = 105241, - [SMALL_STATE(2799)] = 105257, - [SMALL_STATE(2800)] = 105273, - [SMALL_STATE(2801)] = 105289, - [SMALL_STATE(2802)] = 105305, - [SMALL_STATE(2803)] = 105321, - [SMALL_STATE(2804)] = 105337, - [SMALL_STATE(2805)] = 105353, - [SMALL_STATE(2806)] = 105369, - [SMALL_STATE(2807)] = 105385, - [SMALL_STATE(2808)] = 105401, - [SMALL_STATE(2809)] = 105417, - [SMALL_STATE(2810)] = 105433, - [SMALL_STATE(2811)] = 105449, - [SMALL_STATE(2812)] = 105465, - [SMALL_STATE(2813)] = 105481, - [SMALL_STATE(2814)] = 105497, - [SMALL_STATE(2815)] = 105513, - [SMALL_STATE(2816)] = 105529, - [SMALL_STATE(2817)] = 105545, - [SMALL_STATE(2818)] = 105561, - [SMALL_STATE(2819)] = 105577, - [SMALL_STATE(2820)] = 105593, - [SMALL_STATE(2821)] = 105609, - [SMALL_STATE(2822)] = 105625, - [SMALL_STATE(2823)] = 105641, - [SMALL_STATE(2824)] = 105657, - [SMALL_STATE(2825)] = 105673, - [SMALL_STATE(2826)] = 105689, - [SMALL_STATE(2827)] = 105705, - [SMALL_STATE(2828)] = 105721, - [SMALL_STATE(2829)] = 105737, - [SMALL_STATE(2830)] = 105753, - [SMALL_STATE(2831)] = 105769, - [SMALL_STATE(2832)] = 105785, - [SMALL_STATE(2833)] = 105801, - [SMALL_STATE(2834)] = 105817, - [SMALL_STATE(2835)] = 105833, - [SMALL_STATE(2836)] = 105849, - [SMALL_STATE(2837)] = 105865, - [SMALL_STATE(2838)] = 105881, - [SMALL_STATE(2839)] = 105897, - [SMALL_STATE(2840)] = 105913, - [SMALL_STATE(2841)] = 105929, - [SMALL_STATE(2842)] = 105945, - [SMALL_STATE(2843)] = 105961, - [SMALL_STATE(2844)] = 105977, - [SMALL_STATE(2845)] = 105993, - [SMALL_STATE(2846)] = 106009, - [SMALL_STATE(2847)] = 106025, - [SMALL_STATE(2848)] = 106041, - [SMALL_STATE(2849)] = 106057, - [SMALL_STATE(2850)] = 106073, - [SMALL_STATE(2851)] = 106089, - [SMALL_STATE(2852)] = 106105, - [SMALL_STATE(2853)] = 106121, - [SMALL_STATE(2854)] = 106137, - [SMALL_STATE(2855)] = 106153, - [SMALL_STATE(2856)] = 106169, - [SMALL_STATE(2857)] = 106185, - [SMALL_STATE(2858)] = 106201, - [SMALL_STATE(2859)] = 106217, - [SMALL_STATE(2860)] = 106233, - [SMALL_STATE(2861)] = 106249, - [SMALL_STATE(2862)] = 106265, - [SMALL_STATE(2863)] = 106281, - [SMALL_STATE(2864)] = 106297, - [SMALL_STATE(2865)] = 106313, - [SMALL_STATE(2866)] = 106329, - [SMALL_STATE(2867)] = 106345, - [SMALL_STATE(2868)] = 106361, - [SMALL_STATE(2869)] = 106377, - [SMALL_STATE(2870)] = 106393, - [SMALL_STATE(2871)] = 106409, - [SMALL_STATE(2872)] = 106425, - [SMALL_STATE(2873)] = 106441, - [SMALL_STATE(2874)] = 106457, - [SMALL_STATE(2875)] = 106473, - [SMALL_STATE(2876)] = 106489, - [SMALL_STATE(2877)] = 106505, - [SMALL_STATE(2878)] = 106521, - [SMALL_STATE(2879)] = 106537, - [SMALL_STATE(2880)] = 106553, - [SMALL_STATE(2881)] = 106569, - [SMALL_STATE(2882)] = 106585, - [SMALL_STATE(2883)] = 106601, - [SMALL_STATE(2884)] = 106617, - [SMALL_STATE(2885)] = 106633, - [SMALL_STATE(2886)] = 106649, - [SMALL_STATE(2887)] = 106665, - [SMALL_STATE(2888)] = 106681, - [SMALL_STATE(2889)] = 106697, - [SMALL_STATE(2890)] = 106713, - [SMALL_STATE(2891)] = 106729, - [SMALL_STATE(2892)] = 106745, - [SMALL_STATE(2893)] = 106761, - [SMALL_STATE(2894)] = 106777, - [SMALL_STATE(2895)] = 106793, - [SMALL_STATE(2896)] = 106809, - [SMALL_STATE(2897)] = 106825, - [SMALL_STATE(2898)] = 106841, - [SMALL_STATE(2899)] = 106857, - [SMALL_STATE(2900)] = 106873, - [SMALL_STATE(2901)] = 106889, - [SMALL_STATE(2902)] = 106905, - [SMALL_STATE(2903)] = 106921, - [SMALL_STATE(2904)] = 106937, - [SMALL_STATE(2905)] = 106953, - [SMALL_STATE(2906)] = 106969, - [SMALL_STATE(2907)] = 106985, - [SMALL_STATE(2908)] = 107001, - [SMALL_STATE(2909)] = 107017, - [SMALL_STATE(2910)] = 107033, - [SMALL_STATE(2911)] = 107049, - [SMALL_STATE(2912)] = 107065, - [SMALL_STATE(2913)] = 107081, - [SMALL_STATE(2914)] = 107097, - [SMALL_STATE(2915)] = 107113, - [SMALL_STATE(2916)] = 107129, - [SMALL_STATE(2917)] = 107145, - [SMALL_STATE(2918)] = 107161, - [SMALL_STATE(2919)] = 107177, - [SMALL_STATE(2920)] = 107193, - [SMALL_STATE(2921)] = 107209, - [SMALL_STATE(2922)] = 107225, - [SMALL_STATE(2923)] = 107241, - [SMALL_STATE(2924)] = 107257, - [SMALL_STATE(2925)] = 107273, - [SMALL_STATE(2926)] = 107289, - [SMALL_STATE(2927)] = 107305, - [SMALL_STATE(2928)] = 107321, - [SMALL_STATE(2929)] = 107337, - [SMALL_STATE(2930)] = 107353, - [SMALL_STATE(2931)] = 107369, - [SMALL_STATE(2932)] = 107385, - [SMALL_STATE(2933)] = 107401, - [SMALL_STATE(2934)] = 107417, - [SMALL_STATE(2935)] = 107433, - [SMALL_STATE(2936)] = 107449, - [SMALL_STATE(2937)] = 107465, - [SMALL_STATE(2938)] = 107481, - [SMALL_STATE(2939)] = 107497, - [SMALL_STATE(2940)] = 107513, - [SMALL_STATE(2941)] = 107529, - [SMALL_STATE(2942)] = 107545, - [SMALL_STATE(2943)] = 107561, - [SMALL_STATE(2944)] = 107577, - [SMALL_STATE(2945)] = 107593, - [SMALL_STATE(2946)] = 107609, - [SMALL_STATE(2947)] = 107625, - [SMALL_STATE(2948)] = 107641, - [SMALL_STATE(2949)] = 107657, - [SMALL_STATE(2950)] = 107673, - [SMALL_STATE(2951)] = 107689, - [SMALL_STATE(2952)] = 107705, - [SMALL_STATE(2953)] = 107719, - [SMALL_STATE(2954)] = 107735, - [SMALL_STATE(2955)] = 107751, - [SMALL_STATE(2956)] = 107767, - [SMALL_STATE(2957)] = 107783, - [SMALL_STATE(2958)] = 107799, - [SMALL_STATE(2959)] = 107815, - [SMALL_STATE(2960)] = 107831, - [SMALL_STATE(2961)] = 107847, - [SMALL_STATE(2962)] = 107863, - [SMALL_STATE(2963)] = 107879, - [SMALL_STATE(2964)] = 107895, - [SMALL_STATE(2965)] = 107911, - [SMALL_STATE(2966)] = 107927, - [SMALL_STATE(2967)] = 107943, - [SMALL_STATE(2968)] = 107959, - [SMALL_STATE(2969)] = 107975, - [SMALL_STATE(2970)] = 107991, - [SMALL_STATE(2971)] = 108007, - [SMALL_STATE(2972)] = 108023, - [SMALL_STATE(2973)] = 108039, - [SMALL_STATE(2974)] = 108055, - [SMALL_STATE(2975)] = 108071, - [SMALL_STATE(2976)] = 108087, - [SMALL_STATE(2977)] = 108103, - [SMALL_STATE(2978)] = 108119, - [SMALL_STATE(2979)] = 108135, - [SMALL_STATE(2980)] = 108151, - [SMALL_STATE(2981)] = 108167, - [SMALL_STATE(2982)] = 108183, - [SMALL_STATE(2983)] = 108199, - [SMALL_STATE(2984)] = 108215, - [SMALL_STATE(2985)] = 108231, - [SMALL_STATE(2986)] = 108247, - [SMALL_STATE(2987)] = 108263, - [SMALL_STATE(2988)] = 108279, - [SMALL_STATE(2989)] = 108295, - [SMALL_STATE(2990)] = 108311, - [SMALL_STATE(2991)] = 108327, - [SMALL_STATE(2992)] = 108343, - [SMALL_STATE(2993)] = 108359, - [SMALL_STATE(2994)] = 108375, - [SMALL_STATE(2995)] = 108391, - [SMALL_STATE(2996)] = 108407, - [SMALL_STATE(2997)] = 108423, - [SMALL_STATE(2998)] = 108439, - [SMALL_STATE(2999)] = 108455, - [SMALL_STATE(3000)] = 108471, - [SMALL_STATE(3001)] = 108487, - [SMALL_STATE(3002)] = 108503, - [SMALL_STATE(3003)] = 108519, - [SMALL_STATE(3004)] = 108535, - [SMALL_STATE(3005)] = 108551, - [SMALL_STATE(3006)] = 108567, - [SMALL_STATE(3007)] = 108583, - [SMALL_STATE(3008)] = 108599, - [SMALL_STATE(3009)] = 108615, - [SMALL_STATE(3010)] = 108631, - [SMALL_STATE(3011)] = 108647, - [SMALL_STATE(3012)] = 108659, - [SMALL_STATE(3013)] = 108675, - [SMALL_STATE(3014)] = 108691, - [SMALL_STATE(3015)] = 108707, - [SMALL_STATE(3016)] = 108723, - [SMALL_STATE(3017)] = 108739, - [SMALL_STATE(3018)] = 108755, - [SMALL_STATE(3019)] = 108771, - [SMALL_STATE(3020)] = 108787, - [SMALL_STATE(3021)] = 108803, - [SMALL_STATE(3022)] = 108819, - [SMALL_STATE(3023)] = 108835, - [SMALL_STATE(3024)] = 108851, - [SMALL_STATE(3025)] = 108867, - [SMALL_STATE(3026)] = 108883, - [SMALL_STATE(3027)] = 108899, - [SMALL_STATE(3028)] = 108915, - [SMALL_STATE(3029)] = 108931, - [SMALL_STATE(3030)] = 108947, - [SMALL_STATE(3031)] = 108963, - [SMALL_STATE(3032)] = 108979, - [SMALL_STATE(3033)] = 108995, - [SMALL_STATE(3034)] = 109011, - [SMALL_STATE(3035)] = 109027, - [SMALL_STATE(3036)] = 109043, - [SMALL_STATE(3037)] = 109059, - [SMALL_STATE(3038)] = 109075, - [SMALL_STATE(3039)] = 109091, - [SMALL_STATE(3040)] = 109107, - [SMALL_STATE(3041)] = 109123, - [SMALL_STATE(3042)] = 109139, - [SMALL_STATE(3043)] = 109155, - [SMALL_STATE(3044)] = 109171, - [SMALL_STATE(3045)] = 109187, - [SMALL_STATE(3046)] = 109203, - [SMALL_STATE(3047)] = 109219, - [SMALL_STATE(3048)] = 109235, - [SMALL_STATE(3049)] = 109251, - [SMALL_STATE(3050)] = 109267, - [SMALL_STATE(3051)] = 109283, - [SMALL_STATE(3052)] = 109299, - [SMALL_STATE(3053)] = 109315, - [SMALL_STATE(3054)] = 109331, - [SMALL_STATE(3055)] = 109347, - [SMALL_STATE(3056)] = 109363, - [SMALL_STATE(3057)] = 109379, - [SMALL_STATE(3058)] = 109395, - [SMALL_STATE(3059)] = 109411, - [SMALL_STATE(3060)] = 109427, - [SMALL_STATE(3061)] = 109443, - [SMALL_STATE(3062)] = 109459, - [SMALL_STATE(3063)] = 109475, - [SMALL_STATE(3064)] = 109491, - [SMALL_STATE(3065)] = 109507, - [SMALL_STATE(3066)] = 109523, - [SMALL_STATE(3067)] = 109539, - [SMALL_STATE(3068)] = 109555, - [SMALL_STATE(3069)] = 109571, - [SMALL_STATE(3070)] = 109587, - [SMALL_STATE(3071)] = 109603, - [SMALL_STATE(3072)] = 109619, - [SMALL_STATE(3073)] = 109635, - [SMALL_STATE(3074)] = 109651, - [SMALL_STATE(3075)] = 109667, - [SMALL_STATE(3076)] = 109683, - [SMALL_STATE(3077)] = 109699, - [SMALL_STATE(3078)] = 109715, - [SMALL_STATE(3079)] = 109731, - [SMALL_STATE(3080)] = 109747, - [SMALL_STATE(3081)] = 109763, - [SMALL_STATE(3082)] = 109779, - [SMALL_STATE(3083)] = 109795, - [SMALL_STATE(3084)] = 109811, - [SMALL_STATE(3085)] = 109827, - [SMALL_STATE(3086)] = 109843, - [SMALL_STATE(3087)] = 109859, - [SMALL_STATE(3088)] = 109875, - [SMALL_STATE(3089)] = 109891, - [SMALL_STATE(3090)] = 109907, - [SMALL_STATE(3091)] = 109923, - [SMALL_STATE(3092)] = 109939, - [SMALL_STATE(3093)] = 109955, - [SMALL_STATE(3094)] = 109971, - [SMALL_STATE(3095)] = 109987, - [SMALL_STATE(3096)] = 110003, - [SMALL_STATE(3097)] = 110019, - [SMALL_STATE(3098)] = 110035, - [SMALL_STATE(3099)] = 110051, - [SMALL_STATE(3100)] = 110067, - [SMALL_STATE(3101)] = 110083, - [SMALL_STATE(3102)] = 110099, - [SMALL_STATE(3103)] = 110115, - [SMALL_STATE(3104)] = 110131, - [SMALL_STATE(3105)] = 110143, - [SMALL_STATE(3106)] = 110159, - [SMALL_STATE(3107)] = 110175, - [SMALL_STATE(3108)] = 110191, - [SMALL_STATE(3109)] = 110207, - [SMALL_STATE(3110)] = 110223, - [SMALL_STATE(3111)] = 110239, - [SMALL_STATE(3112)] = 110255, - [SMALL_STATE(3113)] = 110271, - [SMALL_STATE(3114)] = 110287, - [SMALL_STATE(3115)] = 110303, - [SMALL_STATE(3116)] = 110319, - [SMALL_STATE(3117)] = 110335, - [SMALL_STATE(3118)] = 110351, - [SMALL_STATE(3119)] = 110367, - [SMALL_STATE(3120)] = 110383, - [SMALL_STATE(3121)] = 110399, - [SMALL_STATE(3122)] = 110415, - [SMALL_STATE(3123)] = 110431, - [SMALL_STATE(3124)] = 110447, - [SMALL_STATE(3125)] = 110463, - [SMALL_STATE(3126)] = 110479, - [SMALL_STATE(3127)] = 110495, - [SMALL_STATE(3128)] = 110511, - [SMALL_STATE(3129)] = 110527, - [SMALL_STATE(3130)] = 110543, - [SMALL_STATE(3131)] = 110559, - [SMALL_STATE(3132)] = 110575, - [SMALL_STATE(3133)] = 110591, - [SMALL_STATE(3134)] = 110607, - [SMALL_STATE(3135)] = 110623, - [SMALL_STATE(3136)] = 110639, - [SMALL_STATE(3137)] = 110655, - [SMALL_STATE(3138)] = 110671, - [SMALL_STATE(3139)] = 110685, - [SMALL_STATE(3140)] = 110701, - [SMALL_STATE(3141)] = 110717, - [SMALL_STATE(3142)] = 110733, - [SMALL_STATE(3143)] = 110749, - [SMALL_STATE(3144)] = 110765, - [SMALL_STATE(3145)] = 110781, - [SMALL_STATE(3146)] = 110797, - [SMALL_STATE(3147)] = 110813, - [SMALL_STATE(3148)] = 110829, - [SMALL_STATE(3149)] = 110845, - [SMALL_STATE(3150)] = 110861, - [SMALL_STATE(3151)] = 110877, - [SMALL_STATE(3152)] = 110893, - [SMALL_STATE(3153)] = 110909, - [SMALL_STATE(3154)] = 110925, - [SMALL_STATE(3155)] = 110941, - [SMALL_STATE(3156)] = 110957, - [SMALL_STATE(3157)] = 110973, - [SMALL_STATE(3158)] = 110989, - [SMALL_STATE(3159)] = 111005, - [SMALL_STATE(3160)] = 111021, - [SMALL_STATE(3161)] = 111037, - [SMALL_STATE(3162)] = 111053, - [SMALL_STATE(3163)] = 111066, - [SMALL_STATE(3164)] = 111079, - [SMALL_STATE(3165)] = 111092, - [SMALL_STATE(3166)] = 111105, - [SMALL_STATE(3167)] = 111118, - [SMALL_STATE(3168)] = 111131, - [SMALL_STATE(3169)] = 111144, - [SMALL_STATE(3170)] = 111157, - [SMALL_STATE(3171)] = 111168, - [SMALL_STATE(3172)] = 111181, - [SMALL_STATE(3173)] = 111194, - [SMALL_STATE(3174)] = 111205, - [SMALL_STATE(3175)] = 111218, - [SMALL_STATE(3176)] = 111229, - [SMALL_STATE(3177)] = 111242, - [SMALL_STATE(3178)] = 111253, - [SMALL_STATE(3179)] = 111266, - [SMALL_STATE(3180)] = 111279, - [SMALL_STATE(3181)] = 111292, - [SMALL_STATE(3182)] = 111305, - [SMALL_STATE(3183)] = 111318, - [SMALL_STATE(3184)] = 111331, - [SMALL_STATE(3185)] = 111344, - [SMALL_STATE(3186)] = 111357, - [SMALL_STATE(3187)] = 111370, - [SMALL_STATE(3188)] = 111381, - [SMALL_STATE(3189)] = 111392, - [SMALL_STATE(3190)] = 111405, - [SMALL_STATE(3191)] = 111418, - [SMALL_STATE(3192)] = 111431, - [SMALL_STATE(3193)] = 111444, - [SMALL_STATE(3194)] = 111457, - [SMALL_STATE(3195)] = 111470, - [SMALL_STATE(3196)] = 111483, - [SMALL_STATE(3197)] = 111496, - [SMALL_STATE(3198)] = 111509, - [SMALL_STATE(3199)] = 111522, - [SMALL_STATE(3200)] = 111535, - [SMALL_STATE(3201)] = 111548, - [SMALL_STATE(3202)] = 111561, - [SMALL_STATE(3203)] = 111574, - [SMALL_STATE(3204)] = 111585, - [SMALL_STATE(3205)] = 111598, - [SMALL_STATE(3206)] = 111611, - [SMALL_STATE(3207)] = 111624, - [SMALL_STATE(3208)] = 111635, - [SMALL_STATE(3209)] = 111648, - [SMALL_STATE(3210)] = 111661, - [SMALL_STATE(3211)] = 111674, - [SMALL_STATE(3212)] = 111687, - [SMALL_STATE(3213)] = 111700, - [SMALL_STATE(3214)] = 111713, - [SMALL_STATE(3215)] = 111726, - [SMALL_STATE(3216)] = 111739, - [SMALL_STATE(3217)] = 111752, - [SMALL_STATE(3218)] = 111765, - [SMALL_STATE(3219)] = 111778, - [SMALL_STATE(3220)] = 111791, - [SMALL_STATE(3221)] = 111804, - [SMALL_STATE(3222)] = 111817, - [SMALL_STATE(3223)] = 111830, - [SMALL_STATE(3224)] = 111843, - [SMALL_STATE(3225)] = 111856, - [SMALL_STATE(3226)] = 111869, - [SMALL_STATE(3227)] = 111882, - [SMALL_STATE(3228)] = 111895, - [SMALL_STATE(3229)] = 111908, - [SMALL_STATE(3230)] = 111921, - [SMALL_STATE(3231)] = 111934, - [SMALL_STATE(3232)] = 111947, - [SMALL_STATE(3233)] = 111960, - [SMALL_STATE(3234)] = 111973, - [SMALL_STATE(3235)] = 111986, - [SMALL_STATE(3236)] = 111999, - [SMALL_STATE(3237)] = 112012, - [SMALL_STATE(3238)] = 112025, - [SMALL_STATE(3239)] = 112038, - [SMALL_STATE(3240)] = 112051, - [SMALL_STATE(3241)] = 112064, - [SMALL_STATE(3242)] = 112077, - [SMALL_STATE(3243)] = 112090, - [SMALL_STATE(3244)] = 112103, - [SMALL_STATE(3245)] = 112116, - [SMALL_STATE(3246)] = 112129, - [SMALL_STATE(3247)] = 112142, - [SMALL_STATE(3248)] = 112155, - [SMALL_STATE(3249)] = 112168, - [SMALL_STATE(3250)] = 112181, - [SMALL_STATE(3251)] = 112194, - [SMALL_STATE(3252)] = 112207, - [SMALL_STATE(3253)] = 112220, - [SMALL_STATE(3254)] = 112233, - [SMALL_STATE(3255)] = 112246, - [SMALL_STATE(3256)] = 112259, - [SMALL_STATE(3257)] = 112272, - [SMALL_STATE(3258)] = 112282, - [SMALL_STATE(3259)] = 112292, - [SMALL_STATE(3260)] = 112302, - [SMALL_STATE(3261)] = 112312, - [SMALL_STATE(3262)] = 112322, - [SMALL_STATE(3263)] = 112332, - [SMALL_STATE(3264)] = 112342, - [SMALL_STATE(3265)] = 112352, - [SMALL_STATE(3266)] = 112362, - [SMALL_STATE(3267)] = 112372, - [SMALL_STATE(3268)] = 112382, - [SMALL_STATE(3269)] = 112392, - [SMALL_STATE(3270)] = 112402, - [SMALL_STATE(3271)] = 112412, - [SMALL_STATE(3272)] = 112422, - [SMALL_STATE(3273)] = 112432, - [SMALL_STATE(3274)] = 112442, - [SMALL_STATE(3275)] = 112452, - [SMALL_STATE(3276)] = 112462, - [SMALL_STATE(3277)] = 112472, - [SMALL_STATE(3278)] = 112482, - [SMALL_STATE(3279)] = 112492, - [SMALL_STATE(3280)] = 112502, - [SMALL_STATE(3281)] = 112512, - [SMALL_STATE(3282)] = 112522, - [SMALL_STATE(3283)] = 112532, - [SMALL_STATE(3284)] = 112542, - [SMALL_STATE(3285)] = 112552, - [SMALL_STATE(3286)] = 112562, - [SMALL_STATE(3287)] = 112572, - [SMALL_STATE(3288)] = 112582, - [SMALL_STATE(3289)] = 112592, - [SMALL_STATE(3290)] = 112602, - [SMALL_STATE(3291)] = 112612, - [SMALL_STATE(3292)] = 112622, - [SMALL_STATE(3293)] = 112632, - [SMALL_STATE(3294)] = 112642, - [SMALL_STATE(3295)] = 112652, - [SMALL_STATE(3296)] = 112662, - [SMALL_STATE(3297)] = 112672, - [SMALL_STATE(3298)] = 112682, - [SMALL_STATE(3299)] = 112692, - [SMALL_STATE(3300)] = 112702, - [SMALL_STATE(3301)] = 112712, - [SMALL_STATE(3302)] = 112722, - [SMALL_STATE(3303)] = 112732, - [SMALL_STATE(3304)] = 112742, - [SMALL_STATE(3305)] = 112752, - [SMALL_STATE(3306)] = 112762, - [SMALL_STATE(3307)] = 112772, - [SMALL_STATE(3308)] = 112782, - [SMALL_STATE(3309)] = 112792, - [SMALL_STATE(3310)] = 112802, - [SMALL_STATE(3311)] = 112812, - [SMALL_STATE(3312)] = 112822, - [SMALL_STATE(3313)] = 112832, - [SMALL_STATE(3314)] = 112842, - [SMALL_STATE(3315)] = 112852, - [SMALL_STATE(3316)] = 112862, - [SMALL_STATE(3317)] = 112872, - [SMALL_STATE(3318)] = 112882, - [SMALL_STATE(3319)] = 112892, - [SMALL_STATE(3320)] = 112902, - [SMALL_STATE(3321)] = 112912, - [SMALL_STATE(3322)] = 112922, - [SMALL_STATE(3323)] = 112932, - [SMALL_STATE(3324)] = 112942, - [SMALL_STATE(3325)] = 112952, - [SMALL_STATE(3326)] = 112962, - [SMALL_STATE(3327)] = 112972, - [SMALL_STATE(3328)] = 112982, - [SMALL_STATE(3329)] = 112992, - [SMALL_STATE(3330)] = 113002, - [SMALL_STATE(3331)] = 113012, - [SMALL_STATE(3332)] = 113022, - [SMALL_STATE(3333)] = 113032, - [SMALL_STATE(3334)] = 113042, - [SMALL_STATE(3335)] = 113052, - [SMALL_STATE(3336)] = 113062, - [SMALL_STATE(3337)] = 113072, - [SMALL_STATE(3338)] = 113082, - [SMALL_STATE(3339)] = 113092, - [SMALL_STATE(3340)] = 113102, - [SMALL_STATE(3341)] = 113112, - [SMALL_STATE(3342)] = 113122, - [SMALL_STATE(3343)] = 113132, - [SMALL_STATE(3344)] = 113142, - [SMALL_STATE(3345)] = 113152, - [SMALL_STATE(3346)] = 113162, - [SMALL_STATE(3347)] = 113172, - [SMALL_STATE(3348)] = 113182, - [SMALL_STATE(3349)] = 113192, - [SMALL_STATE(3350)] = 113202, - [SMALL_STATE(3351)] = 113212, - [SMALL_STATE(3352)] = 113222, - [SMALL_STATE(3353)] = 113232, - [SMALL_STATE(3354)] = 113242, - [SMALL_STATE(3355)] = 113252, - [SMALL_STATE(3356)] = 113262, - [SMALL_STATE(3357)] = 113272, - [SMALL_STATE(3358)] = 113282, - [SMALL_STATE(3359)] = 113292, - [SMALL_STATE(3360)] = 113302, - [SMALL_STATE(3361)] = 113312, - [SMALL_STATE(3362)] = 113322, - [SMALL_STATE(3363)] = 113332, - [SMALL_STATE(3364)] = 113342, - [SMALL_STATE(3365)] = 113352, - [SMALL_STATE(3366)] = 113362, - [SMALL_STATE(3367)] = 113372, - [SMALL_STATE(3368)] = 113382, - [SMALL_STATE(3369)] = 113392, - [SMALL_STATE(3370)] = 113402, - [SMALL_STATE(3371)] = 113412, - [SMALL_STATE(3372)] = 113422, - [SMALL_STATE(3373)] = 113432, - [SMALL_STATE(3374)] = 113442, - [SMALL_STATE(3375)] = 113452, - [SMALL_STATE(3376)] = 113462, - [SMALL_STATE(3377)] = 113472, - [SMALL_STATE(3378)] = 113482, - [SMALL_STATE(3379)] = 113492, - [SMALL_STATE(3380)] = 113502, - [SMALL_STATE(3381)] = 113512, - [SMALL_STATE(3382)] = 113522, - [SMALL_STATE(3383)] = 113532, - [SMALL_STATE(3384)] = 113542, - [SMALL_STATE(3385)] = 113552, - [SMALL_STATE(3386)] = 113562, - [SMALL_STATE(3387)] = 113572, - [SMALL_STATE(3388)] = 113582, - [SMALL_STATE(3389)] = 113592, - [SMALL_STATE(3390)] = 113602, - [SMALL_STATE(3391)] = 113612, - [SMALL_STATE(3392)] = 113622, - [SMALL_STATE(3393)] = 113632, - [SMALL_STATE(3394)] = 113642, - [SMALL_STATE(3395)] = 113652, - [SMALL_STATE(3396)] = 113662, - [SMALL_STATE(3397)] = 113672, - [SMALL_STATE(3398)] = 113682, - [SMALL_STATE(3399)] = 113692, - [SMALL_STATE(3400)] = 113702, - [SMALL_STATE(3401)] = 113712, - [SMALL_STATE(3402)] = 113722, - [SMALL_STATE(3403)] = 113732, - [SMALL_STATE(3404)] = 113742, - [SMALL_STATE(3405)] = 113752, - [SMALL_STATE(3406)] = 113762, - [SMALL_STATE(3407)] = 113772, - [SMALL_STATE(3408)] = 113782, - [SMALL_STATE(3409)] = 113792, - [SMALL_STATE(3410)] = 113802, - [SMALL_STATE(3411)] = 113812, - [SMALL_STATE(3412)] = 113822, - [SMALL_STATE(3413)] = 113832, - [SMALL_STATE(3414)] = 113842, - [SMALL_STATE(3415)] = 113852, - [SMALL_STATE(3416)] = 113862, - [SMALL_STATE(3417)] = 113872, - [SMALL_STATE(3418)] = 113882, - [SMALL_STATE(3419)] = 113892, - [SMALL_STATE(3420)] = 113902, - [SMALL_STATE(3421)] = 113912, - [SMALL_STATE(3422)] = 113922, - [SMALL_STATE(3423)] = 113932, - [SMALL_STATE(3424)] = 113942, - [SMALL_STATE(3425)] = 113952, - [SMALL_STATE(3426)] = 113962, - [SMALL_STATE(3427)] = 113972, - [SMALL_STATE(3428)] = 113982, - [SMALL_STATE(3429)] = 113992, - [SMALL_STATE(3430)] = 114002, - [SMALL_STATE(3431)] = 114012, - [SMALL_STATE(3432)] = 114022, - [SMALL_STATE(3433)] = 114032, - [SMALL_STATE(3434)] = 114042, - [SMALL_STATE(3435)] = 114052, - [SMALL_STATE(3436)] = 114062, - [SMALL_STATE(3437)] = 114072, - [SMALL_STATE(3438)] = 114082, - [SMALL_STATE(3439)] = 114092, - [SMALL_STATE(3440)] = 114102, - [SMALL_STATE(3441)] = 114112, - [SMALL_STATE(3442)] = 114122, - [SMALL_STATE(3443)] = 114132, - [SMALL_STATE(3444)] = 114142, - [SMALL_STATE(3445)] = 114152, - [SMALL_STATE(3446)] = 114162, - [SMALL_STATE(3447)] = 114172, - [SMALL_STATE(3448)] = 114182, - [SMALL_STATE(3449)] = 114192, - [SMALL_STATE(3450)] = 114202, - [SMALL_STATE(3451)] = 114212, - [SMALL_STATE(3452)] = 114222, - [SMALL_STATE(3453)] = 114232, - [SMALL_STATE(3454)] = 114242, - [SMALL_STATE(3455)] = 114252, - [SMALL_STATE(3456)] = 114262, - [SMALL_STATE(3457)] = 114272, - [SMALL_STATE(3458)] = 114282, - [SMALL_STATE(3459)] = 114292, - [SMALL_STATE(3460)] = 114302, - [SMALL_STATE(3461)] = 114312, - [SMALL_STATE(3462)] = 114322, - [SMALL_STATE(3463)] = 114332, - [SMALL_STATE(3464)] = 114342, - [SMALL_STATE(3465)] = 114352, - [SMALL_STATE(3466)] = 114362, - [SMALL_STATE(3467)] = 114372, - [SMALL_STATE(3468)] = 114382, - [SMALL_STATE(3469)] = 114392, - [SMALL_STATE(3470)] = 114402, - [SMALL_STATE(3471)] = 114412, - [SMALL_STATE(3472)] = 114422, - [SMALL_STATE(3473)] = 114432, - [SMALL_STATE(3474)] = 114442, - [SMALL_STATE(3475)] = 114452, - [SMALL_STATE(3476)] = 114462, - [SMALL_STATE(3477)] = 114472, - [SMALL_STATE(3478)] = 114482, - [SMALL_STATE(3479)] = 114492, - [SMALL_STATE(3480)] = 114502, - [SMALL_STATE(3481)] = 114512, - [SMALL_STATE(3482)] = 114522, - [SMALL_STATE(3483)] = 114532, - [SMALL_STATE(3484)] = 114542, - [SMALL_STATE(3485)] = 114552, - [SMALL_STATE(3486)] = 114562, - [SMALL_STATE(3487)] = 114572, - [SMALL_STATE(3488)] = 114582, - [SMALL_STATE(3489)] = 114592, - [SMALL_STATE(3490)] = 114602, - [SMALL_STATE(3491)] = 114612, - [SMALL_STATE(3492)] = 114622, - [SMALL_STATE(3493)] = 114632, - [SMALL_STATE(3494)] = 114642, - [SMALL_STATE(3495)] = 114652, - [SMALL_STATE(3496)] = 114662, - [SMALL_STATE(3497)] = 114672, - [SMALL_STATE(3498)] = 114682, - [SMALL_STATE(3499)] = 114692, - [SMALL_STATE(3500)] = 114702, - [SMALL_STATE(3501)] = 114712, - [SMALL_STATE(3502)] = 114722, - [SMALL_STATE(3503)] = 114732, - [SMALL_STATE(3504)] = 114742, - [SMALL_STATE(3505)] = 114752, - [SMALL_STATE(3506)] = 114762, - [SMALL_STATE(3507)] = 114772, - [SMALL_STATE(3508)] = 114782, - [SMALL_STATE(3509)] = 114792, - [SMALL_STATE(3510)] = 114802, - [SMALL_STATE(3511)] = 114812, - [SMALL_STATE(3512)] = 114822, - [SMALL_STATE(3513)] = 114832, - [SMALL_STATE(3514)] = 114842, - [SMALL_STATE(3515)] = 114852, - [SMALL_STATE(3516)] = 114862, - [SMALL_STATE(3517)] = 114872, - [SMALL_STATE(3518)] = 114882, - [SMALL_STATE(3519)] = 114892, - [SMALL_STATE(3520)] = 114902, - [SMALL_STATE(3521)] = 114912, - [SMALL_STATE(3522)] = 114922, - [SMALL_STATE(3523)] = 114932, - [SMALL_STATE(3524)] = 114942, - [SMALL_STATE(3525)] = 114952, - [SMALL_STATE(3526)] = 114962, - [SMALL_STATE(3527)] = 114972, - [SMALL_STATE(3528)] = 114982, - [SMALL_STATE(3529)] = 114992, - [SMALL_STATE(3530)] = 115002, - [SMALL_STATE(3531)] = 115012, - [SMALL_STATE(3532)] = 115022, - [SMALL_STATE(3533)] = 115032, - [SMALL_STATE(3534)] = 115042, - [SMALL_STATE(3535)] = 115052, - [SMALL_STATE(3536)] = 115062, - [SMALL_STATE(3537)] = 115072, - [SMALL_STATE(3538)] = 115082, - [SMALL_STATE(3539)] = 115092, - [SMALL_STATE(3540)] = 115102, - [SMALL_STATE(3541)] = 115112, - [SMALL_STATE(3542)] = 115122, - [SMALL_STATE(3543)] = 115132, - [SMALL_STATE(3544)] = 115142, - [SMALL_STATE(3545)] = 115152, - [SMALL_STATE(3546)] = 115162, - [SMALL_STATE(3547)] = 115172, - [SMALL_STATE(3548)] = 115182, - [SMALL_STATE(3549)] = 115192, - [SMALL_STATE(3550)] = 115202, - [SMALL_STATE(3551)] = 115212, - [SMALL_STATE(3552)] = 115222, - [SMALL_STATE(3553)] = 115232, - [SMALL_STATE(3554)] = 115242, - [SMALL_STATE(3555)] = 115252, - [SMALL_STATE(3556)] = 115262, - [SMALL_STATE(3557)] = 115272, - [SMALL_STATE(3558)] = 115282, - [SMALL_STATE(3559)] = 115292, - [SMALL_STATE(3560)] = 115302, - [SMALL_STATE(3561)] = 115312, - [SMALL_STATE(3562)] = 115322, - [SMALL_STATE(3563)] = 115332, - [SMALL_STATE(3564)] = 115342, - [SMALL_STATE(3565)] = 115352, - [SMALL_STATE(3566)] = 115362, - [SMALL_STATE(3567)] = 115372, - [SMALL_STATE(3568)] = 115382, - [SMALL_STATE(3569)] = 115392, - [SMALL_STATE(3570)] = 115402, - [SMALL_STATE(3571)] = 115412, - [SMALL_STATE(3572)] = 115422, - [SMALL_STATE(3573)] = 115432, - [SMALL_STATE(3574)] = 115442, - [SMALL_STATE(3575)] = 115452, - [SMALL_STATE(3576)] = 115462, - [SMALL_STATE(3577)] = 115472, - [SMALL_STATE(3578)] = 115482, - [SMALL_STATE(3579)] = 115492, - [SMALL_STATE(3580)] = 115502, - [SMALL_STATE(3581)] = 115512, - [SMALL_STATE(3582)] = 115522, - [SMALL_STATE(3583)] = 115532, - [SMALL_STATE(3584)] = 115542, - [SMALL_STATE(3585)] = 115552, - [SMALL_STATE(3586)] = 115562, - [SMALL_STATE(3587)] = 115572, - [SMALL_STATE(3588)] = 115582, - [SMALL_STATE(3589)] = 115592, - [SMALL_STATE(3590)] = 115602, - [SMALL_STATE(3591)] = 115612, - [SMALL_STATE(3592)] = 115622, - [SMALL_STATE(3593)] = 115632, - [SMALL_STATE(3594)] = 115642, - [SMALL_STATE(3595)] = 115652, - [SMALL_STATE(3596)] = 115662, - [SMALL_STATE(3597)] = 115672, - [SMALL_STATE(3598)] = 115682, - [SMALL_STATE(3599)] = 115692, - [SMALL_STATE(3600)] = 115702, - [SMALL_STATE(3601)] = 115712, - [SMALL_STATE(3602)] = 115722, - [SMALL_STATE(3603)] = 115732, - [SMALL_STATE(3604)] = 115742, - [SMALL_STATE(3605)] = 115752, - [SMALL_STATE(3606)] = 115762, - [SMALL_STATE(3607)] = 115772, - [SMALL_STATE(3608)] = 115782, - [SMALL_STATE(3609)] = 115792, - [SMALL_STATE(3610)] = 115802, - [SMALL_STATE(3611)] = 115812, - [SMALL_STATE(3612)] = 115822, - [SMALL_STATE(3613)] = 115832, - [SMALL_STATE(3614)] = 115842, - [SMALL_STATE(3615)] = 115852, - [SMALL_STATE(3616)] = 115862, - [SMALL_STATE(3617)] = 115872, - [SMALL_STATE(3618)] = 115882, - [SMALL_STATE(3619)] = 115892, - [SMALL_STATE(3620)] = 115902, - [SMALL_STATE(3621)] = 115912, - [SMALL_STATE(3622)] = 115922, - [SMALL_STATE(3623)] = 115932, - [SMALL_STATE(3624)] = 115942, - [SMALL_STATE(3625)] = 115952, - [SMALL_STATE(3626)] = 115962, - [SMALL_STATE(3627)] = 115972, - [SMALL_STATE(3628)] = 115982, - [SMALL_STATE(3629)] = 115992, - [SMALL_STATE(3630)] = 116002, - [SMALL_STATE(3631)] = 116012, - [SMALL_STATE(3632)] = 116022, - [SMALL_STATE(3633)] = 116032, - [SMALL_STATE(3634)] = 116042, - [SMALL_STATE(3635)] = 116052, - [SMALL_STATE(3636)] = 116062, - [SMALL_STATE(3637)] = 116072, - [SMALL_STATE(3638)] = 116082, - [SMALL_STATE(3639)] = 116092, - [SMALL_STATE(3640)] = 116102, - [SMALL_STATE(3641)] = 116112, - [SMALL_STATE(3642)] = 116122, - [SMALL_STATE(3643)] = 116132, - [SMALL_STATE(3644)] = 116142, - [SMALL_STATE(3645)] = 116152, - [SMALL_STATE(3646)] = 116162, - [SMALL_STATE(3647)] = 116172, - [SMALL_STATE(3648)] = 116182, - [SMALL_STATE(3649)] = 116192, - [SMALL_STATE(3650)] = 116202, - [SMALL_STATE(3651)] = 116212, - [SMALL_STATE(3652)] = 116222, - [SMALL_STATE(3653)] = 116232, - [SMALL_STATE(3654)] = 116242, - [SMALL_STATE(3655)] = 116252, - [SMALL_STATE(3656)] = 116262, - [SMALL_STATE(3657)] = 116272, - [SMALL_STATE(3658)] = 116282, - [SMALL_STATE(3659)] = 116292, - [SMALL_STATE(3660)] = 116302, - [SMALL_STATE(3661)] = 116312, - [SMALL_STATE(3662)] = 116322, - [SMALL_STATE(3663)] = 116332, - [SMALL_STATE(3664)] = 116342, - [SMALL_STATE(3665)] = 116352, - [SMALL_STATE(3666)] = 116362, - [SMALL_STATE(3667)] = 116372, - [SMALL_STATE(3668)] = 116382, - [SMALL_STATE(3669)] = 116392, - [SMALL_STATE(3670)] = 116402, - [SMALL_STATE(3671)] = 116412, - [SMALL_STATE(3672)] = 116422, - [SMALL_STATE(3673)] = 116432, - [SMALL_STATE(3674)] = 116442, - [SMALL_STATE(3675)] = 116452, - [SMALL_STATE(3676)] = 116462, - [SMALL_STATE(3677)] = 116472, - [SMALL_STATE(3678)] = 116482, - [SMALL_STATE(3679)] = 116492, - [SMALL_STATE(3680)] = 116502, - [SMALL_STATE(3681)] = 116512, - [SMALL_STATE(3682)] = 116522, - [SMALL_STATE(3683)] = 116532, - [SMALL_STATE(3684)] = 116542, - [SMALL_STATE(3685)] = 116552, - [SMALL_STATE(3686)] = 116562, - [SMALL_STATE(3687)] = 116572, - [SMALL_STATE(3688)] = 116582, - [SMALL_STATE(3689)] = 116592, - [SMALL_STATE(3690)] = 116602, - [SMALL_STATE(3691)] = 116612, - [SMALL_STATE(3692)] = 116622, - [SMALL_STATE(3693)] = 116632, - [SMALL_STATE(3694)] = 116642, - [SMALL_STATE(3695)] = 116652, - [SMALL_STATE(3696)] = 116662, - [SMALL_STATE(3697)] = 116672, - [SMALL_STATE(3698)] = 116682, - [SMALL_STATE(3699)] = 116692, - [SMALL_STATE(3700)] = 116702, - [SMALL_STATE(3701)] = 116712, - [SMALL_STATE(3702)] = 116722, - [SMALL_STATE(3703)] = 116732, - [SMALL_STATE(3704)] = 116742, - [SMALL_STATE(3705)] = 116752, - [SMALL_STATE(3706)] = 116762, - [SMALL_STATE(3707)] = 116772, - [SMALL_STATE(3708)] = 116782, - [SMALL_STATE(3709)] = 116792, - [SMALL_STATE(3710)] = 116802, - [SMALL_STATE(3711)] = 116812, - [SMALL_STATE(3712)] = 116822, - [SMALL_STATE(3713)] = 116832, - [SMALL_STATE(3714)] = 116842, - [SMALL_STATE(3715)] = 116852, - [SMALL_STATE(3716)] = 116862, - [SMALL_STATE(3717)] = 116872, - [SMALL_STATE(3718)] = 116882, - [SMALL_STATE(3719)] = 116892, - [SMALL_STATE(3720)] = 116902, - [SMALL_STATE(3721)] = 116912, - [SMALL_STATE(3722)] = 116922, - [SMALL_STATE(3723)] = 116932, - [SMALL_STATE(3724)] = 116942, - [SMALL_STATE(3725)] = 116952, - [SMALL_STATE(3726)] = 116962, - [SMALL_STATE(3727)] = 116972, - [SMALL_STATE(3728)] = 116982, - [SMALL_STATE(3729)] = 116992, - [SMALL_STATE(3730)] = 117002, - [SMALL_STATE(3731)] = 117012, - [SMALL_STATE(3732)] = 117022, - [SMALL_STATE(3733)] = 117032, - [SMALL_STATE(3734)] = 117042, - [SMALL_STATE(3735)] = 117052, - [SMALL_STATE(3736)] = 117062, - [SMALL_STATE(3737)] = 117072, - [SMALL_STATE(3738)] = 117082, - [SMALL_STATE(3739)] = 117092, - [SMALL_STATE(3740)] = 117102, - [SMALL_STATE(3741)] = 117112, - [SMALL_STATE(3742)] = 117122, - [SMALL_STATE(3743)] = 117132, - [SMALL_STATE(3744)] = 117142, - [SMALL_STATE(3745)] = 117152, - [SMALL_STATE(3746)] = 117162, - [SMALL_STATE(3747)] = 117172, - [SMALL_STATE(3748)] = 117182, - [SMALL_STATE(3749)] = 117192, - [SMALL_STATE(3750)] = 117202, - [SMALL_STATE(3751)] = 117212, - [SMALL_STATE(3752)] = 117222, - [SMALL_STATE(3753)] = 117232, - [SMALL_STATE(3754)] = 117242, - [SMALL_STATE(3755)] = 117252, - [SMALL_STATE(3756)] = 117262, - [SMALL_STATE(3757)] = 117272, - [SMALL_STATE(3758)] = 117282, - [SMALL_STATE(3759)] = 117292, - [SMALL_STATE(3760)] = 117302, - [SMALL_STATE(3761)] = 117312, - [SMALL_STATE(3762)] = 117322, - [SMALL_STATE(3763)] = 117332, - [SMALL_STATE(3764)] = 117342, - [SMALL_STATE(3765)] = 117352, - [SMALL_STATE(3766)] = 117362, - [SMALL_STATE(3767)] = 117372, - [SMALL_STATE(3768)] = 117382, - [SMALL_STATE(3769)] = 117392, - [SMALL_STATE(3770)] = 117402, - [SMALL_STATE(3771)] = 117412, - [SMALL_STATE(3772)] = 117422, - [SMALL_STATE(3773)] = 117432, - [SMALL_STATE(3774)] = 117442, - [SMALL_STATE(3775)] = 117452, - [SMALL_STATE(3776)] = 117462, - [SMALL_STATE(3777)] = 117472, - [SMALL_STATE(3778)] = 117482, - [SMALL_STATE(3779)] = 117492, - [SMALL_STATE(3780)] = 117502, - [SMALL_STATE(3781)] = 117512, - [SMALL_STATE(3782)] = 117522, - [SMALL_STATE(3783)] = 117532, - [SMALL_STATE(3784)] = 117542, - [SMALL_STATE(3785)] = 117552, - [SMALL_STATE(3786)] = 117562, - [SMALL_STATE(3787)] = 117572, - [SMALL_STATE(3788)] = 117582, - [SMALL_STATE(3789)] = 117592, - [SMALL_STATE(3790)] = 117602, - [SMALL_STATE(3791)] = 117612, - [SMALL_STATE(3792)] = 117622, - [SMALL_STATE(3793)] = 117632, - [SMALL_STATE(3794)] = 117642, - [SMALL_STATE(3795)] = 117652, - [SMALL_STATE(3796)] = 117662, - [SMALL_STATE(3797)] = 117672, - [SMALL_STATE(3798)] = 117682, - [SMALL_STATE(3799)] = 117692, - [SMALL_STATE(3800)] = 117702, - [SMALL_STATE(3801)] = 117712, - [SMALL_STATE(3802)] = 117722, - [SMALL_STATE(3803)] = 117732, - [SMALL_STATE(3804)] = 117742, - [SMALL_STATE(3805)] = 117752, - [SMALL_STATE(3806)] = 117762, - [SMALL_STATE(3807)] = 117772, - [SMALL_STATE(3808)] = 117782, - [SMALL_STATE(3809)] = 117792, - [SMALL_STATE(3810)] = 117802, - [SMALL_STATE(3811)] = 117812, - [SMALL_STATE(3812)] = 117822, - [SMALL_STATE(3813)] = 117832, - [SMALL_STATE(3814)] = 117842, - [SMALL_STATE(3815)] = 117852, - [SMALL_STATE(3816)] = 117862, - [SMALL_STATE(3817)] = 117872, - [SMALL_STATE(3818)] = 117882, - [SMALL_STATE(3819)] = 117892, - [SMALL_STATE(3820)] = 117902, - [SMALL_STATE(3821)] = 117912, - [SMALL_STATE(3822)] = 117922, - [SMALL_STATE(3823)] = 117932, - [SMALL_STATE(3824)] = 117942, - [SMALL_STATE(3825)] = 117952, - [SMALL_STATE(3826)] = 117962, - [SMALL_STATE(3827)] = 117972, - [SMALL_STATE(3828)] = 117982, - [SMALL_STATE(3829)] = 117992, - [SMALL_STATE(3830)] = 118002, - [SMALL_STATE(3831)] = 118012, - [SMALL_STATE(3832)] = 118022, - [SMALL_STATE(3833)] = 118032, - [SMALL_STATE(3834)] = 118042, - [SMALL_STATE(3835)] = 118052, - [SMALL_STATE(3836)] = 118062, - [SMALL_STATE(3837)] = 118072, - [SMALL_STATE(3838)] = 118082, - [SMALL_STATE(3839)] = 118092, - [SMALL_STATE(3840)] = 118102, - [SMALL_STATE(3841)] = 118112, - [SMALL_STATE(3842)] = 118122, - [SMALL_STATE(3843)] = 118132, - [SMALL_STATE(3844)] = 118142, - [SMALL_STATE(3845)] = 118152, - [SMALL_STATE(3846)] = 118162, - [SMALL_STATE(3847)] = 118172, - [SMALL_STATE(3848)] = 118182, - [SMALL_STATE(3849)] = 118192, - [SMALL_STATE(3850)] = 118202, - [SMALL_STATE(3851)] = 118212, - [SMALL_STATE(3852)] = 118222, - [SMALL_STATE(3853)] = 118232, - [SMALL_STATE(3854)] = 118242, - [SMALL_STATE(3855)] = 118252, - [SMALL_STATE(3856)] = 118262, - [SMALL_STATE(3857)] = 118272, - [SMALL_STATE(3858)] = 118282, - [SMALL_STATE(3859)] = 118292, - [SMALL_STATE(3860)] = 118302, - [SMALL_STATE(3861)] = 118312, - [SMALL_STATE(3862)] = 118322, - [SMALL_STATE(3863)] = 118332, - [SMALL_STATE(3864)] = 118342, - [SMALL_STATE(3865)] = 118352, - [SMALL_STATE(3866)] = 118362, - [SMALL_STATE(3867)] = 118372, - [SMALL_STATE(3868)] = 118382, - [SMALL_STATE(3869)] = 118392, - [SMALL_STATE(3870)] = 118402, - [SMALL_STATE(3871)] = 118412, - [SMALL_STATE(3872)] = 118422, - [SMALL_STATE(3873)] = 118432, - [SMALL_STATE(3874)] = 118442, - [SMALL_STATE(3875)] = 118452, - [SMALL_STATE(3876)] = 118462, - [SMALL_STATE(3877)] = 118472, - [SMALL_STATE(3878)] = 118482, - [SMALL_STATE(3879)] = 118492, - [SMALL_STATE(3880)] = 118502, - [SMALL_STATE(3881)] = 118512, - [SMALL_STATE(3882)] = 118522, - [SMALL_STATE(3883)] = 118532, - [SMALL_STATE(3884)] = 118542, - [SMALL_STATE(3885)] = 118552, - [SMALL_STATE(3886)] = 118562, - [SMALL_STATE(3887)] = 118572, - [SMALL_STATE(3888)] = 118582, - [SMALL_STATE(3889)] = 118592, - [SMALL_STATE(3890)] = 118602, - [SMALL_STATE(3891)] = 118612, - [SMALL_STATE(3892)] = 118622, - [SMALL_STATE(3893)] = 118632, - [SMALL_STATE(3894)] = 118642, - [SMALL_STATE(3895)] = 118652, - [SMALL_STATE(3896)] = 118662, - [SMALL_STATE(3897)] = 118672, - [SMALL_STATE(3898)] = 118682, - [SMALL_STATE(3899)] = 118692, - [SMALL_STATE(3900)] = 118702, - [SMALL_STATE(3901)] = 118712, - [SMALL_STATE(3902)] = 118722, - [SMALL_STATE(3903)] = 118732, - [SMALL_STATE(3904)] = 118742, - [SMALL_STATE(3905)] = 118752, - [SMALL_STATE(3906)] = 118762, - [SMALL_STATE(3907)] = 118772, - [SMALL_STATE(3908)] = 118782, - [SMALL_STATE(3909)] = 118792, - [SMALL_STATE(3910)] = 118802, - [SMALL_STATE(3911)] = 118812, - [SMALL_STATE(3912)] = 118822, - [SMALL_STATE(3913)] = 118832, - [SMALL_STATE(3914)] = 118842, - [SMALL_STATE(3915)] = 118852, - [SMALL_STATE(3916)] = 118862, - [SMALL_STATE(3917)] = 118872, - [SMALL_STATE(3918)] = 118882, - [SMALL_STATE(3919)] = 118892, - [SMALL_STATE(3920)] = 118902, - [SMALL_STATE(3921)] = 118912, - [SMALL_STATE(3922)] = 118922, - [SMALL_STATE(3923)] = 118932, - [SMALL_STATE(3924)] = 118942, - [SMALL_STATE(3925)] = 118952, - [SMALL_STATE(3926)] = 118962, - [SMALL_STATE(3927)] = 118972, - [SMALL_STATE(3928)] = 118982, - [SMALL_STATE(3929)] = 118992, - [SMALL_STATE(3930)] = 119002, - [SMALL_STATE(3931)] = 119012, - [SMALL_STATE(3932)] = 119022, - [SMALL_STATE(3933)] = 119032, - [SMALL_STATE(3934)] = 119042, - [SMALL_STATE(3935)] = 119052, - [SMALL_STATE(3936)] = 119062, - [SMALL_STATE(3937)] = 119072, - [SMALL_STATE(3938)] = 119082, - [SMALL_STATE(3939)] = 119092, - [SMALL_STATE(3940)] = 119102, - [SMALL_STATE(3941)] = 119112, - [SMALL_STATE(3942)] = 119122, - [SMALL_STATE(3943)] = 119132, - [SMALL_STATE(3944)] = 119142, - [SMALL_STATE(3945)] = 119152, - [SMALL_STATE(3946)] = 119162, - [SMALL_STATE(3947)] = 119172, - [SMALL_STATE(3948)] = 119182, - [SMALL_STATE(3949)] = 119192, - [SMALL_STATE(3950)] = 119202, - [SMALL_STATE(3951)] = 119212, - [SMALL_STATE(3952)] = 119222, - [SMALL_STATE(3953)] = 119232, - [SMALL_STATE(3954)] = 119242, - [SMALL_STATE(3955)] = 119252, - [SMALL_STATE(3956)] = 119262, - [SMALL_STATE(3957)] = 119272, - [SMALL_STATE(3958)] = 119282, - [SMALL_STATE(3959)] = 119292, - [SMALL_STATE(3960)] = 119302, - [SMALL_STATE(3961)] = 119312, - [SMALL_STATE(3962)] = 119322, - [SMALL_STATE(3963)] = 119332, - [SMALL_STATE(3964)] = 119342, - [SMALL_STATE(3965)] = 119352, - [SMALL_STATE(3966)] = 119362, - [SMALL_STATE(3967)] = 119372, - [SMALL_STATE(3968)] = 119382, - [SMALL_STATE(3969)] = 119392, - [SMALL_STATE(3970)] = 119402, - [SMALL_STATE(3971)] = 119412, - [SMALL_STATE(3972)] = 119422, - [SMALL_STATE(3973)] = 119432, - [SMALL_STATE(3974)] = 119442, - [SMALL_STATE(3975)] = 119452, - [SMALL_STATE(3976)] = 119462, - [SMALL_STATE(3977)] = 119472, - [SMALL_STATE(3978)] = 119482, - [SMALL_STATE(3979)] = 119492, - [SMALL_STATE(3980)] = 119502, - [SMALL_STATE(3981)] = 119512, - [SMALL_STATE(3982)] = 119522, - [SMALL_STATE(3983)] = 119532, - [SMALL_STATE(3984)] = 119542, - [SMALL_STATE(3985)] = 119546, + [SMALL_STATE(2203)] = 93930, + [SMALL_STATE(2204)] = 93959, + [SMALL_STATE(2205)] = 93988, + [SMALL_STATE(2206)] = 94017, + [SMALL_STATE(2207)] = 94046, + [SMALL_STATE(2208)] = 94075, + [SMALL_STATE(2209)] = 94104, + [SMALL_STATE(2210)] = 94133, + [SMALL_STATE(2211)] = 94162, + [SMALL_STATE(2212)] = 94191, + [SMALL_STATE(2213)] = 94220, + [SMALL_STATE(2214)] = 94249, + [SMALL_STATE(2215)] = 94278, + [SMALL_STATE(2216)] = 94307, + [SMALL_STATE(2217)] = 94336, + [SMALL_STATE(2218)] = 94365, + [SMALL_STATE(2219)] = 94394, + [SMALL_STATE(2220)] = 94423, + [SMALL_STATE(2221)] = 94452, + [SMALL_STATE(2222)] = 94481, + [SMALL_STATE(2223)] = 94510, + [SMALL_STATE(2224)] = 94539, + [SMALL_STATE(2225)] = 94568, + [SMALL_STATE(2226)] = 94597, + [SMALL_STATE(2227)] = 94626, + [SMALL_STATE(2228)] = 94655, + [SMALL_STATE(2229)] = 94684, + [SMALL_STATE(2230)] = 94713, + [SMALL_STATE(2231)] = 94742, + [SMALL_STATE(2232)] = 94765, + [SMALL_STATE(2233)] = 94788, + [SMALL_STATE(2234)] = 94811, + [SMALL_STATE(2235)] = 94834, + [SMALL_STATE(2236)] = 94857, + [SMALL_STATE(2237)] = 94880, + [SMALL_STATE(2238)] = 94903, + [SMALL_STATE(2239)] = 94926, + [SMALL_STATE(2240)] = 94949, + [SMALL_STATE(2241)] = 94972, + [SMALL_STATE(2242)] = 94993, + [SMALL_STATE(2243)] = 95016, + [SMALL_STATE(2244)] = 95039, + [SMALL_STATE(2245)] = 95062, + [SMALL_STATE(2246)] = 95085, + [SMALL_STATE(2247)] = 95108, + [SMALL_STATE(2248)] = 95131, + [SMALL_STATE(2249)] = 95154, + [SMALL_STATE(2250)] = 95177, + [SMALL_STATE(2251)] = 95200, + [SMALL_STATE(2252)] = 95223, + [SMALL_STATE(2253)] = 95246, + [SMALL_STATE(2254)] = 95269, + [SMALL_STATE(2255)] = 95290, + [SMALL_STATE(2256)] = 95313, + [SMALL_STATE(2257)] = 95336, + [SMALL_STATE(2258)] = 95359, + [SMALL_STATE(2259)] = 95382, + [SMALL_STATE(2260)] = 95405, + [SMALL_STATE(2261)] = 95428, + [SMALL_STATE(2262)] = 95451, + [SMALL_STATE(2263)] = 95474, + [SMALL_STATE(2264)] = 95497, + [SMALL_STATE(2265)] = 95520, + [SMALL_STATE(2266)] = 95543, + [SMALL_STATE(2267)] = 95566, + [SMALL_STATE(2268)] = 95589, + [SMALL_STATE(2269)] = 95612, + [SMALL_STATE(2270)] = 95635, + [SMALL_STATE(2271)] = 95658, + [SMALL_STATE(2272)] = 95681, + [SMALL_STATE(2273)] = 95704, + [SMALL_STATE(2274)] = 95727, + [SMALL_STATE(2275)] = 95750, + [SMALL_STATE(2276)] = 95773, + [SMALL_STATE(2277)] = 95796, + [SMALL_STATE(2278)] = 95819, + [SMALL_STATE(2279)] = 95842, + [SMALL_STATE(2280)] = 95865, + [SMALL_STATE(2281)] = 95888, + [SMALL_STATE(2282)] = 95911, + [SMALL_STATE(2283)] = 95934, + [SMALL_STATE(2284)] = 95957, + [SMALL_STATE(2285)] = 95980, + [SMALL_STATE(2286)] = 96003, + [SMALL_STATE(2287)] = 96026, + [SMALL_STATE(2288)] = 96049, + [SMALL_STATE(2289)] = 96072, + [SMALL_STATE(2290)] = 96095, + [SMALL_STATE(2291)] = 96118, + [SMALL_STATE(2292)] = 96141, + [SMALL_STATE(2293)] = 96164, + [SMALL_STATE(2294)] = 96187, + [SMALL_STATE(2295)] = 96210, + [SMALL_STATE(2296)] = 96233, + [SMALL_STATE(2297)] = 96256, + [SMALL_STATE(2298)] = 96279, + [SMALL_STATE(2299)] = 96302, + [SMALL_STATE(2300)] = 96325, + [SMALL_STATE(2301)] = 96348, + [SMALL_STATE(2302)] = 96371, + [SMALL_STATE(2303)] = 96394, + [SMALL_STATE(2304)] = 96417, + [SMALL_STATE(2305)] = 96440, + [SMALL_STATE(2306)] = 96463, + [SMALL_STATE(2307)] = 96486, + [SMALL_STATE(2308)] = 96509, + [SMALL_STATE(2309)] = 96532, + [SMALL_STATE(2310)] = 96555, + [SMALL_STATE(2311)] = 96578, + [SMALL_STATE(2312)] = 96601, + [SMALL_STATE(2313)] = 96624, + [SMALL_STATE(2314)] = 96647, + [SMALL_STATE(2315)] = 96670, + [SMALL_STATE(2316)] = 96693, + [SMALL_STATE(2317)] = 96716, + [SMALL_STATE(2318)] = 96739, + [SMALL_STATE(2319)] = 96762, + [SMALL_STATE(2320)] = 96785, + [SMALL_STATE(2321)] = 96808, + [SMALL_STATE(2322)] = 96831, + [SMALL_STATE(2323)] = 96854, + [SMALL_STATE(2324)] = 96877, + [SMALL_STATE(2325)] = 96900, + [SMALL_STATE(2326)] = 96923, + [SMALL_STATE(2327)] = 96946, + [SMALL_STATE(2328)] = 96969, + [SMALL_STATE(2329)] = 96992, + [SMALL_STATE(2330)] = 97015, + [SMALL_STATE(2331)] = 97036, + [SMALL_STATE(2332)] = 97059, + [SMALL_STATE(2333)] = 97080, + [SMALL_STATE(2334)] = 97103, + [SMALL_STATE(2335)] = 97126, + [SMALL_STATE(2336)] = 97149, + [SMALL_STATE(2337)] = 97172, + [SMALL_STATE(2338)] = 97195, + [SMALL_STATE(2339)] = 97218, + [SMALL_STATE(2340)] = 97241, + [SMALL_STATE(2341)] = 97264, + [SMALL_STATE(2342)] = 97287, + [SMALL_STATE(2343)] = 97310, + [SMALL_STATE(2344)] = 97333, + [SMALL_STATE(2345)] = 97356, + [SMALL_STATE(2346)] = 97379, + [SMALL_STATE(2347)] = 97402, + [SMALL_STATE(2348)] = 97425, + [SMALL_STATE(2349)] = 97448, + [SMALL_STATE(2350)] = 97471, + [SMALL_STATE(2351)] = 97494, + [SMALL_STATE(2352)] = 97517, + [SMALL_STATE(2353)] = 97540, + [SMALL_STATE(2354)] = 97563, + [SMALL_STATE(2355)] = 97586, + [SMALL_STATE(2356)] = 97609, + [SMALL_STATE(2357)] = 97632, + [SMALL_STATE(2358)] = 97655, + [SMALL_STATE(2359)] = 97678, + [SMALL_STATE(2360)] = 97701, + [SMALL_STATE(2361)] = 97724, + [SMALL_STATE(2362)] = 97747, + [SMALL_STATE(2363)] = 97770, + [SMALL_STATE(2364)] = 97793, + [SMALL_STATE(2365)] = 97816, + [SMALL_STATE(2366)] = 97839, + [SMALL_STATE(2367)] = 97862, + [SMALL_STATE(2368)] = 97885, + [SMALL_STATE(2369)] = 97908, + [SMALL_STATE(2370)] = 97931, + [SMALL_STATE(2371)] = 97954, + [SMALL_STATE(2372)] = 97977, + [SMALL_STATE(2373)] = 98000, + [SMALL_STATE(2374)] = 98023, + [SMALL_STATE(2375)] = 98046, + [SMALL_STATE(2376)] = 98069, + [SMALL_STATE(2377)] = 98092, + [SMALL_STATE(2378)] = 98115, + [SMALL_STATE(2379)] = 98138, + [SMALL_STATE(2380)] = 98161, + [SMALL_STATE(2381)] = 98184, + [SMALL_STATE(2382)] = 98207, + [SMALL_STATE(2383)] = 98229, + [SMALL_STATE(2384)] = 98251, + [SMALL_STATE(2385)] = 98273, + [SMALL_STATE(2386)] = 98295, + [SMALL_STATE(2387)] = 98317, + [SMALL_STATE(2388)] = 98339, + [SMALL_STATE(2389)] = 98361, + [SMALL_STATE(2390)] = 98383, + [SMALL_STATE(2391)] = 98405, + [SMALL_STATE(2392)] = 98427, + [SMALL_STATE(2393)] = 98449, + [SMALL_STATE(2394)] = 98471, + [SMALL_STATE(2395)] = 98493, + [SMALL_STATE(2396)] = 98515, + [SMALL_STATE(2397)] = 98537, + [SMALL_STATE(2398)] = 98559, + [SMALL_STATE(2399)] = 98581, + [SMALL_STATE(2400)] = 98603, + [SMALL_STATE(2401)] = 98625, + [SMALL_STATE(2402)] = 98645, + [SMALL_STATE(2403)] = 98667, + [SMALL_STATE(2404)] = 98689, + [SMALL_STATE(2405)] = 98711, + [SMALL_STATE(2406)] = 98733, + [SMALL_STATE(2407)] = 98755, + [SMALL_STATE(2408)] = 98777, + [SMALL_STATE(2409)] = 98799, + [SMALL_STATE(2410)] = 98821, + [SMALL_STATE(2411)] = 98843, + [SMALL_STATE(2412)] = 98865, + [SMALL_STATE(2413)] = 98887, + [SMALL_STATE(2414)] = 98909, + [SMALL_STATE(2415)] = 98931, + [SMALL_STATE(2416)] = 98953, + [SMALL_STATE(2417)] = 98975, + [SMALL_STATE(2418)] = 98997, + [SMALL_STATE(2419)] = 99019, + [SMALL_STATE(2420)] = 99041, + [SMALL_STATE(2421)] = 99063, + [SMALL_STATE(2422)] = 99085, + [SMALL_STATE(2423)] = 99107, + [SMALL_STATE(2424)] = 99129, + [SMALL_STATE(2425)] = 99151, + [SMALL_STATE(2426)] = 99169, + [SMALL_STATE(2427)] = 99191, + [SMALL_STATE(2428)] = 99213, + [SMALL_STATE(2429)] = 99235, + [SMALL_STATE(2430)] = 99257, + [SMALL_STATE(2431)] = 99279, + [SMALL_STATE(2432)] = 99299, + [SMALL_STATE(2433)] = 99321, + [SMALL_STATE(2434)] = 99343, + [SMALL_STATE(2435)] = 99365, + [SMALL_STATE(2436)] = 99387, + [SMALL_STATE(2437)] = 99409, + [SMALL_STATE(2438)] = 99431, + [SMALL_STATE(2439)] = 99453, + [SMALL_STATE(2440)] = 99475, + [SMALL_STATE(2441)] = 99497, + [SMALL_STATE(2442)] = 99519, + [SMALL_STATE(2443)] = 99541, + [SMALL_STATE(2444)] = 99563, + [SMALL_STATE(2445)] = 99585, + [SMALL_STATE(2446)] = 99607, + [SMALL_STATE(2447)] = 99629, + [SMALL_STATE(2448)] = 99651, + [SMALL_STATE(2449)] = 99673, + [SMALL_STATE(2450)] = 99695, + [SMALL_STATE(2451)] = 99717, + [SMALL_STATE(2452)] = 99739, + [SMALL_STATE(2453)] = 99761, + [SMALL_STATE(2454)] = 99783, + [SMALL_STATE(2455)] = 99805, + [SMALL_STATE(2456)] = 99827, + [SMALL_STATE(2457)] = 99849, + [SMALL_STATE(2458)] = 99871, + [SMALL_STATE(2459)] = 99893, + [SMALL_STATE(2460)] = 99915, + [SMALL_STATE(2461)] = 99937, + [SMALL_STATE(2462)] = 99959, + [SMALL_STATE(2463)] = 99981, + [SMALL_STATE(2464)] = 100003, + [SMALL_STATE(2465)] = 100025, + [SMALL_STATE(2466)] = 100047, + [SMALL_STATE(2467)] = 100069, + [SMALL_STATE(2468)] = 100091, + [SMALL_STATE(2469)] = 100113, + [SMALL_STATE(2470)] = 100135, + [SMALL_STATE(2471)] = 100157, + [SMALL_STATE(2472)] = 100179, + [SMALL_STATE(2473)] = 100201, + [SMALL_STATE(2474)] = 100223, + [SMALL_STATE(2475)] = 100245, + [SMALL_STATE(2476)] = 100267, + [SMALL_STATE(2477)] = 100289, + [SMALL_STATE(2478)] = 100311, + [SMALL_STATE(2479)] = 100333, + [SMALL_STATE(2480)] = 100355, + [SMALL_STATE(2481)] = 100377, + [SMALL_STATE(2482)] = 100399, + [SMALL_STATE(2483)] = 100421, + [SMALL_STATE(2484)] = 100443, + [SMALL_STATE(2485)] = 100465, + [SMALL_STATE(2486)] = 100487, + [SMALL_STATE(2487)] = 100509, + [SMALL_STATE(2488)] = 100531, + [SMALL_STATE(2489)] = 100553, + [SMALL_STATE(2490)] = 100575, + [SMALL_STATE(2491)] = 100597, + [SMALL_STATE(2492)] = 100619, + [SMALL_STATE(2493)] = 100641, + [SMALL_STATE(2494)] = 100663, + [SMALL_STATE(2495)] = 100685, + [SMALL_STATE(2496)] = 100707, + [SMALL_STATE(2497)] = 100729, + [SMALL_STATE(2498)] = 100751, + [SMALL_STATE(2499)] = 100773, + [SMALL_STATE(2500)] = 100795, + [SMALL_STATE(2501)] = 100817, + [SMALL_STATE(2502)] = 100839, + [SMALL_STATE(2503)] = 100861, + [SMALL_STATE(2504)] = 100883, + [SMALL_STATE(2505)] = 100905, + [SMALL_STATE(2506)] = 100927, + [SMALL_STATE(2507)] = 100949, + [SMALL_STATE(2508)] = 100971, + [SMALL_STATE(2509)] = 100993, + [SMALL_STATE(2510)] = 101008, + [SMALL_STATE(2511)] = 101023, + [SMALL_STATE(2512)] = 101038, + [SMALL_STATE(2513)] = 101053, + [SMALL_STATE(2514)] = 101068, + [SMALL_STATE(2515)] = 101083, + [SMALL_STATE(2516)] = 101098, + [SMALL_STATE(2517)] = 101113, + [SMALL_STATE(2518)] = 101129, + [SMALL_STATE(2519)] = 101145, + [SMALL_STATE(2520)] = 101161, + [SMALL_STATE(2521)] = 101177, + [SMALL_STATE(2522)] = 101193, + [SMALL_STATE(2523)] = 101209, + [SMALL_STATE(2524)] = 101225, + [SMALL_STATE(2525)] = 101241, + [SMALL_STATE(2526)] = 101257, + [SMALL_STATE(2527)] = 101273, + [SMALL_STATE(2528)] = 101289, + [SMALL_STATE(2529)] = 101305, + [SMALL_STATE(2530)] = 101321, + [SMALL_STATE(2531)] = 101337, + [SMALL_STATE(2532)] = 101353, + [SMALL_STATE(2533)] = 101369, + [SMALL_STATE(2534)] = 101385, + [SMALL_STATE(2535)] = 101401, + [SMALL_STATE(2536)] = 101417, + [SMALL_STATE(2537)] = 101433, + [SMALL_STATE(2538)] = 101449, + [SMALL_STATE(2539)] = 101465, + [SMALL_STATE(2540)] = 101481, + [SMALL_STATE(2541)] = 101497, + [SMALL_STATE(2542)] = 101513, + [SMALL_STATE(2543)] = 101529, + [SMALL_STATE(2544)] = 101545, + [SMALL_STATE(2545)] = 101561, + [SMALL_STATE(2546)] = 101577, + [SMALL_STATE(2547)] = 101593, + [SMALL_STATE(2548)] = 101609, + [SMALL_STATE(2549)] = 101625, + [SMALL_STATE(2550)] = 101641, + [SMALL_STATE(2551)] = 101657, + [SMALL_STATE(2552)] = 101673, + [SMALL_STATE(2553)] = 101689, + [SMALL_STATE(2554)] = 101705, + [SMALL_STATE(2555)] = 101721, + [SMALL_STATE(2556)] = 101737, + [SMALL_STATE(2557)] = 101753, + [SMALL_STATE(2558)] = 101769, + [SMALL_STATE(2559)] = 101785, + [SMALL_STATE(2560)] = 101801, + [SMALL_STATE(2561)] = 101817, + [SMALL_STATE(2562)] = 101833, + [SMALL_STATE(2563)] = 101849, + [SMALL_STATE(2564)] = 101865, + [SMALL_STATE(2565)] = 101881, + [SMALL_STATE(2566)] = 101897, + [SMALL_STATE(2567)] = 101913, + [SMALL_STATE(2568)] = 101929, + [SMALL_STATE(2569)] = 101945, + [SMALL_STATE(2570)] = 101961, + [SMALL_STATE(2571)] = 101977, + [SMALL_STATE(2572)] = 101993, + [SMALL_STATE(2573)] = 102009, + [SMALL_STATE(2574)] = 102025, + [SMALL_STATE(2575)] = 102041, + [SMALL_STATE(2576)] = 102057, + [SMALL_STATE(2577)] = 102073, + [SMALL_STATE(2578)] = 102089, + [SMALL_STATE(2579)] = 102105, + [SMALL_STATE(2580)] = 102121, + [SMALL_STATE(2581)] = 102137, + [SMALL_STATE(2582)] = 102153, + [SMALL_STATE(2583)] = 102169, + [SMALL_STATE(2584)] = 102185, + [SMALL_STATE(2585)] = 102201, + [SMALL_STATE(2586)] = 102217, + [SMALL_STATE(2587)] = 102233, + [SMALL_STATE(2588)] = 102249, + [SMALL_STATE(2589)] = 102265, + [SMALL_STATE(2590)] = 102281, + [SMALL_STATE(2591)] = 102297, + [SMALL_STATE(2592)] = 102313, + [SMALL_STATE(2593)] = 102329, + [SMALL_STATE(2594)] = 102345, + [SMALL_STATE(2595)] = 102361, + [SMALL_STATE(2596)] = 102377, + [SMALL_STATE(2597)] = 102393, + [SMALL_STATE(2598)] = 102409, + [SMALL_STATE(2599)] = 102425, + [SMALL_STATE(2600)] = 102441, + [SMALL_STATE(2601)] = 102457, + [SMALL_STATE(2602)] = 102473, + [SMALL_STATE(2603)] = 102489, + [SMALL_STATE(2604)] = 102505, + [SMALL_STATE(2605)] = 102521, + [SMALL_STATE(2606)] = 102537, + [SMALL_STATE(2607)] = 102553, + [SMALL_STATE(2608)] = 102569, + [SMALL_STATE(2609)] = 102585, + [SMALL_STATE(2610)] = 102601, + [SMALL_STATE(2611)] = 102617, + [SMALL_STATE(2612)] = 102633, + [SMALL_STATE(2613)] = 102649, + [SMALL_STATE(2614)] = 102665, + [SMALL_STATE(2615)] = 102681, + [SMALL_STATE(2616)] = 102697, + [SMALL_STATE(2617)] = 102713, + [SMALL_STATE(2618)] = 102729, + [SMALL_STATE(2619)] = 102745, + [SMALL_STATE(2620)] = 102761, + [SMALL_STATE(2621)] = 102777, + [SMALL_STATE(2622)] = 102793, + [SMALL_STATE(2623)] = 102809, + [SMALL_STATE(2624)] = 102825, + [SMALL_STATE(2625)] = 102841, + [SMALL_STATE(2626)] = 102857, + [SMALL_STATE(2627)] = 102873, + [SMALL_STATE(2628)] = 102889, + [SMALL_STATE(2629)] = 102905, + [SMALL_STATE(2630)] = 102921, + [SMALL_STATE(2631)] = 102937, + [SMALL_STATE(2632)] = 102953, + [SMALL_STATE(2633)] = 102969, + [SMALL_STATE(2634)] = 102985, + [SMALL_STATE(2635)] = 103001, + [SMALL_STATE(2636)] = 103017, + [SMALL_STATE(2637)] = 103033, + [SMALL_STATE(2638)] = 103049, + [SMALL_STATE(2639)] = 103065, + [SMALL_STATE(2640)] = 103081, + [SMALL_STATE(2641)] = 103097, + [SMALL_STATE(2642)] = 103113, + [SMALL_STATE(2643)] = 103129, + [SMALL_STATE(2644)] = 103145, + [SMALL_STATE(2645)] = 103161, + [SMALL_STATE(2646)] = 103177, + [SMALL_STATE(2647)] = 103193, + [SMALL_STATE(2648)] = 103209, + [SMALL_STATE(2649)] = 103225, + [SMALL_STATE(2650)] = 103241, + [SMALL_STATE(2651)] = 103257, + [SMALL_STATE(2652)] = 103273, + [SMALL_STATE(2653)] = 103289, + [SMALL_STATE(2654)] = 103305, + [SMALL_STATE(2655)] = 103321, + [SMALL_STATE(2656)] = 103337, + [SMALL_STATE(2657)] = 103353, + [SMALL_STATE(2658)] = 103369, + [SMALL_STATE(2659)] = 103385, + [SMALL_STATE(2660)] = 103401, + [SMALL_STATE(2661)] = 103417, + [SMALL_STATE(2662)] = 103433, + [SMALL_STATE(2663)] = 103449, + [SMALL_STATE(2664)] = 103465, + [SMALL_STATE(2665)] = 103481, + [SMALL_STATE(2666)] = 103497, + [SMALL_STATE(2667)] = 103513, + [SMALL_STATE(2668)] = 103529, + [SMALL_STATE(2669)] = 103545, + [SMALL_STATE(2670)] = 103561, + [SMALL_STATE(2671)] = 103577, + [SMALL_STATE(2672)] = 103593, + [SMALL_STATE(2673)] = 103609, + [SMALL_STATE(2674)] = 103625, + [SMALL_STATE(2675)] = 103641, + [SMALL_STATE(2676)] = 103657, + [SMALL_STATE(2677)] = 103673, + [SMALL_STATE(2678)] = 103689, + [SMALL_STATE(2679)] = 103705, + [SMALL_STATE(2680)] = 103721, + [SMALL_STATE(2681)] = 103737, + [SMALL_STATE(2682)] = 103753, + [SMALL_STATE(2683)] = 103769, + [SMALL_STATE(2684)] = 103785, + [SMALL_STATE(2685)] = 103801, + [SMALL_STATE(2686)] = 103817, + [SMALL_STATE(2687)] = 103833, + [SMALL_STATE(2688)] = 103849, + [SMALL_STATE(2689)] = 103865, + [SMALL_STATE(2690)] = 103881, + [SMALL_STATE(2691)] = 103897, + [SMALL_STATE(2692)] = 103913, + [SMALL_STATE(2693)] = 103929, + [SMALL_STATE(2694)] = 103945, + [SMALL_STATE(2695)] = 103961, + [SMALL_STATE(2696)] = 103977, + [SMALL_STATE(2697)] = 103993, + [SMALL_STATE(2698)] = 104009, + [SMALL_STATE(2699)] = 104025, + [SMALL_STATE(2700)] = 104041, + [SMALL_STATE(2701)] = 104057, + [SMALL_STATE(2702)] = 104073, + [SMALL_STATE(2703)] = 104089, + [SMALL_STATE(2704)] = 104105, + [SMALL_STATE(2705)] = 104121, + [SMALL_STATE(2706)] = 104137, + [SMALL_STATE(2707)] = 104153, + [SMALL_STATE(2708)] = 104169, + [SMALL_STATE(2709)] = 104185, + [SMALL_STATE(2710)] = 104201, + [SMALL_STATE(2711)] = 104217, + [SMALL_STATE(2712)] = 104233, + [SMALL_STATE(2713)] = 104249, + [SMALL_STATE(2714)] = 104265, + [SMALL_STATE(2715)] = 104281, + [SMALL_STATE(2716)] = 104297, + [SMALL_STATE(2717)] = 104313, + [SMALL_STATE(2718)] = 104329, + [SMALL_STATE(2719)] = 104345, + [SMALL_STATE(2720)] = 104361, + [SMALL_STATE(2721)] = 104377, + [SMALL_STATE(2722)] = 104393, + [SMALL_STATE(2723)] = 104409, + [SMALL_STATE(2724)] = 104425, + [SMALL_STATE(2725)] = 104441, + [SMALL_STATE(2726)] = 104457, + [SMALL_STATE(2727)] = 104473, + [SMALL_STATE(2728)] = 104489, + [SMALL_STATE(2729)] = 104505, + [SMALL_STATE(2730)] = 104521, + [SMALL_STATE(2731)] = 104537, + [SMALL_STATE(2732)] = 104553, + [SMALL_STATE(2733)] = 104569, + [SMALL_STATE(2734)] = 104585, + [SMALL_STATE(2735)] = 104601, + [SMALL_STATE(2736)] = 104617, + [SMALL_STATE(2737)] = 104633, + [SMALL_STATE(2738)] = 104649, + [SMALL_STATE(2739)] = 104665, + [SMALL_STATE(2740)] = 104681, + [SMALL_STATE(2741)] = 104697, + [SMALL_STATE(2742)] = 104713, + [SMALL_STATE(2743)] = 104729, + [SMALL_STATE(2744)] = 104745, + [SMALL_STATE(2745)] = 104761, + [SMALL_STATE(2746)] = 104777, + [SMALL_STATE(2747)] = 104793, + [SMALL_STATE(2748)] = 104809, + [SMALL_STATE(2749)] = 104825, + [SMALL_STATE(2750)] = 104841, + [SMALL_STATE(2751)] = 104857, + [SMALL_STATE(2752)] = 104873, + [SMALL_STATE(2753)] = 104889, + [SMALL_STATE(2754)] = 104905, + [SMALL_STATE(2755)] = 104921, + [SMALL_STATE(2756)] = 104937, + [SMALL_STATE(2757)] = 104953, + [SMALL_STATE(2758)] = 104969, + [SMALL_STATE(2759)] = 104985, + [SMALL_STATE(2760)] = 105001, + [SMALL_STATE(2761)] = 105017, + [SMALL_STATE(2762)] = 105033, + [SMALL_STATE(2763)] = 105045, + [SMALL_STATE(2764)] = 105061, + [SMALL_STATE(2765)] = 105077, + [SMALL_STATE(2766)] = 105093, + [SMALL_STATE(2767)] = 105109, + [SMALL_STATE(2768)] = 105125, + [SMALL_STATE(2769)] = 105141, + [SMALL_STATE(2770)] = 105157, + [SMALL_STATE(2771)] = 105173, + [SMALL_STATE(2772)] = 105189, + [SMALL_STATE(2773)] = 105201, + [SMALL_STATE(2774)] = 105217, + [SMALL_STATE(2775)] = 105233, + [SMALL_STATE(2776)] = 105249, + [SMALL_STATE(2777)] = 105265, + [SMALL_STATE(2778)] = 105281, + [SMALL_STATE(2779)] = 105297, + [SMALL_STATE(2780)] = 105313, + [SMALL_STATE(2781)] = 105329, + [SMALL_STATE(2782)] = 105345, + [SMALL_STATE(2783)] = 105361, + [SMALL_STATE(2784)] = 105377, + [SMALL_STATE(2785)] = 105393, + [SMALL_STATE(2786)] = 105409, + [SMALL_STATE(2787)] = 105425, + [SMALL_STATE(2788)] = 105441, + [SMALL_STATE(2789)] = 105457, + [SMALL_STATE(2790)] = 105473, + [SMALL_STATE(2791)] = 105489, + [SMALL_STATE(2792)] = 105505, + [SMALL_STATE(2793)] = 105521, + [SMALL_STATE(2794)] = 105537, + [SMALL_STATE(2795)] = 105553, + [SMALL_STATE(2796)] = 105569, + [SMALL_STATE(2797)] = 105585, + [SMALL_STATE(2798)] = 105601, + [SMALL_STATE(2799)] = 105617, + [SMALL_STATE(2800)] = 105633, + [SMALL_STATE(2801)] = 105649, + [SMALL_STATE(2802)] = 105665, + [SMALL_STATE(2803)] = 105681, + [SMALL_STATE(2804)] = 105697, + [SMALL_STATE(2805)] = 105713, + [SMALL_STATE(2806)] = 105729, + [SMALL_STATE(2807)] = 105745, + [SMALL_STATE(2808)] = 105761, + [SMALL_STATE(2809)] = 105777, + [SMALL_STATE(2810)] = 105793, + [SMALL_STATE(2811)] = 105809, + [SMALL_STATE(2812)] = 105825, + [SMALL_STATE(2813)] = 105841, + [SMALL_STATE(2814)] = 105857, + [SMALL_STATE(2815)] = 105873, + [SMALL_STATE(2816)] = 105889, + [SMALL_STATE(2817)] = 105905, + [SMALL_STATE(2818)] = 105921, + [SMALL_STATE(2819)] = 105937, + [SMALL_STATE(2820)] = 105953, + [SMALL_STATE(2821)] = 105969, + [SMALL_STATE(2822)] = 105985, + [SMALL_STATE(2823)] = 106001, + [SMALL_STATE(2824)] = 106017, + [SMALL_STATE(2825)] = 106033, + [SMALL_STATE(2826)] = 106049, + [SMALL_STATE(2827)] = 106065, + [SMALL_STATE(2828)] = 106081, + [SMALL_STATE(2829)] = 106097, + [SMALL_STATE(2830)] = 106113, + [SMALL_STATE(2831)] = 106129, + [SMALL_STATE(2832)] = 106145, + [SMALL_STATE(2833)] = 106161, + [SMALL_STATE(2834)] = 106177, + [SMALL_STATE(2835)] = 106193, + [SMALL_STATE(2836)] = 106209, + [SMALL_STATE(2837)] = 106225, + [SMALL_STATE(2838)] = 106241, + [SMALL_STATE(2839)] = 106257, + [SMALL_STATE(2840)] = 106273, + [SMALL_STATE(2841)] = 106289, + [SMALL_STATE(2842)] = 106305, + [SMALL_STATE(2843)] = 106321, + [SMALL_STATE(2844)] = 106337, + [SMALL_STATE(2845)] = 106353, + [SMALL_STATE(2846)] = 106369, + [SMALL_STATE(2847)] = 106385, + [SMALL_STATE(2848)] = 106401, + [SMALL_STATE(2849)] = 106417, + [SMALL_STATE(2850)] = 106433, + [SMALL_STATE(2851)] = 106449, + [SMALL_STATE(2852)] = 106465, + [SMALL_STATE(2853)] = 106481, + [SMALL_STATE(2854)] = 106497, + [SMALL_STATE(2855)] = 106513, + [SMALL_STATE(2856)] = 106529, + [SMALL_STATE(2857)] = 106545, + [SMALL_STATE(2858)] = 106561, + [SMALL_STATE(2859)] = 106577, + [SMALL_STATE(2860)] = 106593, + [SMALL_STATE(2861)] = 106609, + [SMALL_STATE(2862)] = 106625, + [SMALL_STATE(2863)] = 106641, + [SMALL_STATE(2864)] = 106657, + [SMALL_STATE(2865)] = 106673, + [SMALL_STATE(2866)] = 106689, + [SMALL_STATE(2867)] = 106705, + [SMALL_STATE(2868)] = 106721, + [SMALL_STATE(2869)] = 106737, + [SMALL_STATE(2870)] = 106753, + [SMALL_STATE(2871)] = 106769, + [SMALL_STATE(2872)] = 106785, + [SMALL_STATE(2873)] = 106801, + [SMALL_STATE(2874)] = 106817, + [SMALL_STATE(2875)] = 106833, + [SMALL_STATE(2876)] = 106849, + [SMALL_STATE(2877)] = 106865, + [SMALL_STATE(2878)] = 106881, + [SMALL_STATE(2879)] = 106897, + [SMALL_STATE(2880)] = 106913, + [SMALL_STATE(2881)] = 106929, + [SMALL_STATE(2882)] = 106945, + [SMALL_STATE(2883)] = 106961, + [SMALL_STATE(2884)] = 106977, + [SMALL_STATE(2885)] = 106993, + [SMALL_STATE(2886)] = 107009, + [SMALL_STATE(2887)] = 107025, + [SMALL_STATE(2888)] = 107041, + [SMALL_STATE(2889)] = 107057, + [SMALL_STATE(2890)] = 107073, + [SMALL_STATE(2891)] = 107089, + [SMALL_STATE(2892)] = 107105, + [SMALL_STATE(2893)] = 107121, + [SMALL_STATE(2894)] = 107137, + [SMALL_STATE(2895)] = 107153, + [SMALL_STATE(2896)] = 107169, + [SMALL_STATE(2897)] = 107185, + [SMALL_STATE(2898)] = 107201, + [SMALL_STATE(2899)] = 107217, + [SMALL_STATE(2900)] = 107233, + [SMALL_STATE(2901)] = 107249, + [SMALL_STATE(2902)] = 107265, + [SMALL_STATE(2903)] = 107281, + [SMALL_STATE(2904)] = 107297, + [SMALL_STATE(2905)] = 107313, + [SMALL_STATE(2906)] = 107329, + [SMALL_STATE(2907)] = 107345, + [SMALL_STATE(2908)] = 107361, + [SMALL_STATE(2909)] = 107377, + [SMALL_STATE(2910)] = 107393, + [SMALL_STATE(2911)] = 107409, + [SMALL_STATE(2912)] = 107425, + [SMALL_STATE(2913)] = 107441, + [SMALL_STATE(2914)] = 107457, + [SMALL_STATE(2915)] = 107473, + [SMALL_STATE(2916)] = 107489, + [SMALL_STATE(2917)] = 107505, + [SMALL_STATE(2918)] = 107521, + [SMALL_STATE(2919)] = 107537, + [SMALL_STATE(2920)] = 107553, + [SMALL_STATE(2921)] = 107569, + [SMALL_STATE(2922)] = 107585, + [SMALL_STATE(2923)] = 107601, + [SMALL_STATE(2924)] = 107617, + [SMALL_STATE(2925)] = 107633, + [SMALL_STATE(2926)] = 107649, + [SMALL_STATE(2927)] = 107665, + [SMALL_STATE(2928)] = 107681, + [SMALL_STATE(2929)] = 107697, + [SMALL_STATE(2930)] = 107713, + [SMALL_STATE(2931)] = 107729, + [SMALL_STATE(2932)] = 107745, + [SMALL_STATE(2933)] = 107761, + [SMALL_STATE(2934)] = 107777, + [SMALL_STATE(2935)] = 107793, + [SMALL_STATE(2936)] = 107809, + [SMALL_STATE(2937)] = 107825, + [SMALL_STATE(2938)] = 107841, + [SMALL_STATE(2939)] = 107857, + [SMALL_STATE(2940)] = 107873, + [SMALL_STATE(2941)] = 107889, + [SMALL_STATE(2942)] = 107905, + [SMALL_STATE(2943)] = 107921, + [SMALL_STATE(2944)] = 107937, + [SMALL_STATE(2945)] = 107953, + [SMALL_STATE(2946)] = 107969, + [SMALL_STATE(2947)] = 107985, + [SMALL_STATE(2948)] = 108001, + [SMALL_STATE(2949)] = 108017, + [SMALL_STATE(2950)] = 108033, + [SMALL_STATE(2951)] = 108049, + [SMALL_STATE(2952)] = 108065, + [SMALL_STATE(2953)] = 108079, + [SMALL_STATE(2954)] = 108095, + [SMALL_STATE(2955)] = 108111, + [SMALL_STATE(2956)] = 108127, + [SMALL_STATE(2957)] = 108143, + [SMALL_STATE(2958)] = 108159, + [SMALL_STATE(2959)] = 108175, + [SMALL_STATE(2960)] = 108191, + [SMALL_STATE(2961)] = 108207, + [SMALL_STATE(2962)] = 108223, + [SMALL_STATE(2963)] = 108239, + [SMALL_STATE(2964)] = 108255, + [SMALL_STATE(2965)] = 108271, + [SMALL_STATE(2966)] = 108287, + [SMALL_STATE(2967)] = 108303, + [SMALL_STATE(2968)] = 108319, + [SMALL_STATE(2969)] = 108335, + [SMALL_STATE(2970)] = 108351, + [SMALL_STATE(2971)] = 108367, + [SMALL_STATE(2972)] = 108383, + [SMALL_STATE(2973)] = 108399, + [SMALL_STATE(2974)] = 108415, + [SMALL_STATE(2975)] = 108431, + [SMALL_STATE(2976)] = 108447, + [SMALL_STATE(2977)] = 108463, + [SMALL_STATE(2978)] = 108479, + [SMALL_STATE(2979)] = 108495, + [SMALL_STATE(2980)] = 108511, + [SMALL_STATE(2981)] = 108527, + [SMALL_STATE(2982)] = 108543, + [SMALL_STATE(2983)] = 108559, + [SMALL_STATE(2984)] = 108575, + [SMALL_STATE(2985)] = 108591, + [SMALL_STATE(2986)] = 108607, + [SMALL_STATE(2987)] = 108623, + [SMALL_STATE(2988)] = 108639, + [SMALL_STATE(2989)] = 108655, + [SMALL_STATE(2990)] = 108671, + [SMALL_STATE(2991)] = 108687, + [SMALL_STATE(2992)] = 108703, + [SMALL_STATE(2993)] = 108719, + [SMALL_STATE(2994)] = 108735, + [SMALL_STATE(2995)] = 108751, + [SMALL_STATE(2996)] = 108767, + [SMALL_STATE(2997)] = 108783, + [SMALL_STATE(2998)] = 108799, + [SMALL_STATE(2999)] = 108815, + [SMALL_STATE(3000)] = 108831, + [SMALL_STATE(3001)] = 108847, + [SMALL_STATE(3002)] = 108863, + [SMALL_STATE(3003)] = 108879, + [SMALL_STATE(3004)] = 108895, + [SMALL_STATE(3005)] = 108911, + [SMALL_STATE(3006)] = 108927, + [SMALL_STATE(3007)] = 108943, + [SMALL_STATE(3008)] = 108959, + [SMALL_STATE(3009)] = 108975, + [SMALL_STATE(3010)] = 108991, + [SMALL_STATE(3011)] = 109007, + [SMALL_STATE(3012)] = 109019, + [SMALL_STATE(3013)] = 109035, + [SMALL_STATE(3014)] = 109051, + [SMALL_STATE(3015)] = 109067, + [SMALL_STATE(3016)] = 109083, + [SMALL_STATE(3017)] = 109099, + [SMALL_STATE(3018)] = 109115, + [SMALL_STATE(3019)] = 109131, + [SMALL_STATE(3020)] = 109147, + [SMALL_STATE(3021)] = 109163, + [SMALL_STATE(3022)] = 109179, + [SMALL_STATE(3023)] = 109195, + [SMALL_STATE(3024)] = 109211, + [SMALL_STATE(3025)] = 109227, + [SMALL_STATE(3026)] = 109243, + [SMALL_STATE(3027)] = 109259, + [SMALL_STATE(3028)] = 109275, + [SMALL_STATE(3029)] = 109291, + [SMALL_STATE(3030)] = 109307, + [SMALL_STATE(3031)] = 109323, + [SMALL_STATE(3032)] = 109339, + [SMALL_STATE(3033)] = 109355, + [SMALL_STATE(3034)] = 109371, + [SMALL_STATE(3035)] = 109387, + [SMALL_STATE(3036)] = 109403, + [SMALL_STATE(3037)] = 109419, + [SMALL_STATE(3038)] = 109435, + [SMALL_STATE(3039)] = 109451, + [SMALL_STATE(3040)] = 109467, + [SMALL_STATE(3041)] = 109483, + [SMALL_STATE(3042)] = 109499, + [SMALL_STATE(3043)] = 109515, + [SMALL_STATE(3044)] = 109531, + [SMALL_STATE(3045)] = 109547, + [SMALL_STATE(3046)] = 109563, + [SMALL_STATE(3047)] = 109579, + [SMALL_STATE(3048)] = 109595, + [SMALL_STATE(3049)] = 109611, + [SMALL_STATE(3050)] = 109627, + [SMALL_STATE(3051)] = 109643, + [SMALL_STATE(3052)] = 109659, + [SMALL_STATE(3053)] = 109675, + [SMALL_STATE(3054)] = 109691, + [SMALL_STATE(3055)] = 109707, + [SMALL_STATE(3056)] = 109723, + [SMALL_STATE(3057)] = 109739, + [SMALL_STATE(3058)] = 109755, + [SMALL_STATE(3059)] = 109771, + [SMALL_STATE(3060)] = 109787, + [SMALL_STATE(3061)] = 109803, + [SMALL_STATE(3062)] = 109819, + [SMALL_STATE(3063)] = 109835, + [SMALL_STATE(3064)] = 109851, + [SMALL_STATE(3065)] = 109867, + [SMALL_STATE(3066)] = 109883, + [SMALL_STATE(3067)] = 109899, + [SMALL_STATE(3068)] = 109915, + [SMALL_STATE(3069)] = 109931, + [SMALL_STATE(3070)] = 109947, + [SMALL_STATE(3071)] = 109963, + [SMALL_STATE(3072)] = 109979, + [SMALL_STATE(3073)] = 109995, + [SMALL_STATE(3074)] = 110011, + [SMALL_STATE(3075)] = 110027, + [SMALL_STATE(3076)] = 110043, + [SMALL_STATE(3077)] = 110059, + [SMALL_STATE(3078)] = 110075, + [SMALL_STATE(3079)] = 110091, + [SMALL_STATE(3080)] = 110107, + [SMALL_STATE(3081)] = 110123, + [SMALL_STATE(3082)] = 110139, + [SMALL_STATE(3083)] = 110155, + [SMALL_STATE(3084)] = 110171, + [SMALL_STATE(3085)] = 110187, + [SMALL_STATE(3086)] = 110203, + [SMALL_STATE(3087)] = 110219, + [SMALL_STATE(3088)] = 110235, + [SMALL_STATE(3089)] = 110251, + [SMALL_STATE(3090)] = 110267, + [SMALL_STATE(3091)] = 110283, + [SMALL_STATE(3092)] = 110299, + [SMALL_STATE(3093)] = 110315, + [SMALL_STATE(3094)] = 110331, + [SMALL_STATE(3095)] = 110347, + [SMALL_STATE(3096)] = 110363, + [SMALL_STATE(3097)] = 110379, + [SMALL_STATE(3098)] = 110395, + [SMALL_STATE(3099)] = 110411, + [SMALL_STATE(3100)] = 110427, + [SMALL_STATE(3101)] = 110443, + [SMALL_STATE(3102)] = 110459, + [SMALL_STATE(3103)] = 110475, + [SMALL_STATE(3104)] = 110491, + [SMALL_STATE(3105)] = 110503, + [SMALL_STATE(3106)] = 110519, + [SMALL_STATE(3107)] = 110535, + [SMALL_STATE(3108)] = 110551, + [SMALL_STATE(3109)] = 110567, + [SMALL_STATE(3110)] = 110583, + [SMALL_STATE(3111)] = 110599, + [SMALL_STATE(3112)] = 110615, + [SMALL_STATE(3113)] = 110631, + [SMALL_STATE(3114)] = 110647, + [SMALL_STATE(3115)] = 110663, + [SMALL_STATE(3116)] = 110679, + [SMALL_STATE(3117)] = 110695, + [SMALL_STATE(3118)] = 110711, + [SMALL_STATE(3119)] = 110727, + [SMALL_STATE(3120)] = 110743, + [SMALL_STATE(3121)] = 110759, + [SMALL_STATE(3122)] = 110775, + [SMALL_STATE(3123)] = 110791, + [SMALL_STATE(3124)] = 110807, + [SMALL_STATE(3125)] = 110823, + [SMALL_STATE(3126)] = 110839, + [SMALL_STATE(3127)] = 110855, + [SMALL_STATE(3128)] = 110871, + [SMALL_STATE(3129)] = 110887, + [SMALL_STATE(3130)] = 110903, + [SMALL_STATE(3131)] = 110919, + [SMALL_STATE(3132)] = 110935, + [SMALL_STATE(3133)] = 110951, + [SMALL_STATE(3134)] = 110967, + [SMALL_STATE(3135)] = 110983, + [SMALL_STATE(3136)] = 110999, + [SMALL_STATE(3137)] = 111015, + [SMALL_STATE(3138)] = 111031, + [SMALL_STATE(3139)] = 111045, + [SMALL_STATE(3140)] = 111061, + [SMALL_STATE(3141)] = 111077, + [SMALL_STATE(3142)] = 111093, + [SMALL_STATE(3143)] = 111109, + [SMALL_STATE(3144)] = 111125, + [SMALL_STATE(3145)] = 111141, + [SMALL_STATE(3146)] = 111157, + [SMALL_STATE(3147)] = 111173, + [SMALL_STATE(3148)] = 111189, + [SMALL_STATE(3149)] = 111205, + [SMALL_STATE(3150)] = 111221, + [SMALL_STATE(3151)] = 111237, + [SMALL_STATE(3152)] = 111253, + [SMALL_STATE(3153)] = 111269, + [SMALL_STATE(3154)] = 111285, + [SMALL_STATE(3155)] = 111301, + [SMALL_STATE(3156)] = 111317, + [SMALL_STATE(3157)] = 111333, + [SMALL_STATE(3158)] = 111349, + [SMALL_STATE(3159)] = 111365, + [SMALL_STATE(3160)] = 111381, + [SMALL_STATE(3161)] = 111397, + [SMALL_STATE(3162)] = 111413, + [SMALL_STATE(3163)] = 111426, + [SMALL_STATE(3164)] = 111439, + [SMALL_STATE(3165)] = 111452, + [SMALL_STATE(3166)] = 111465, + [SMALL_STATE(3167)] = 111478, + [SMALL_STATE(3168)] = 111491, + [SMALL_STATE(3169)] = 111504, + [SMALL_STATE(3170)] = 111517, + [SMALL_STATE(3171)] = 111528, + [SMALL_STATE(3172)] = 111541, + [SMALL_STATE(3173)] = 111554, + [SMALL_STATE(3174)] = 111565, + [SMALL_STATE(3175)] = 111578, + [SMALL_STATE(3176)] = 111589, + [SMALL_STATE(3177)] = 111602, + [SMALL_STATE(3178)] = 111613, + [SMALL_STATE(3179)] = 111626, + [SMALL_STATE(3180)] = 111639, + [SMALL_STATE(3181)] = 111652, + [SMALL_STATE(3182)] = 111665, + [SMALL_STATE(3183)] = 111678, + [SMALL_STATE(3184)] = 111691, + [SMALL_STATE(3185)] = 111704, + [SMALL_STATE(3186)] = 111717, + [SMALL_STATE(3187)] = 111730, + [SMALL_STATE(3188)] = 111741, + [SMALL_STATE(3189)] = 111752, + [SMALL_STATE(3190)] = 111765, + [SMALL_STATE(3191)] = 111778, + [SMALL_STATE(3192)] = 111791, + [SMALL_STATE(3193)] = 111804, + [SMALL_STATE(3194)] = 111817, + [SMALL_STATE(3195)] = 111830, + [SMALL_STATE(3196)] = 111843, + [SMALL_STATE(3197)] = 111856, + [SMALL_STATE(3198)] = 111869, + [SMALL_STATE(3199)] = 111882, + [SMALL_STATE(3200)] = 111895, + [SMALL_STATE(3201)] = 111908, + [SMALL_STATE(3202)] = 111921, + [SMALL_STATE(3203)] = 111934, + [SMALL_STATE(3204)] = 111945, + [SMALL_STATE(3205)] = 111958, + [SMALL_STATE(3206)] = 111971, + [SMALL_STATE(3207)] = 111984, + [SMALL_STATE(3208)] = 111995, + [SMALL_STATE(3209)] = 112008, + [SMALL_STATE(3210)] = 112021, + [SMALL_STATE(3211)] = 112034, + [SMALL_STATE(3212)] = 112047, + [SMALL_STATE(3213)] = 112060, + [SMALL_STATE(3214)] = 112073, + [SMALL_STATE(3215)] = 112086, + [SMALL_STATE(3216)] = 112099, + [SMALL_STATE(3217)] = 112112, + [SMALL_STATE(3218)] = 112125, + [SMALL_STATE(3219)] = 112138, + [SMALL_STATE(3220)] = 112151, + [SMALL_STATE(3221)] = 112164, + [SMALL_STATE(3222)] = 112177, + [SMALL_STATE(3223)] = 112190, + [SMALL_STATE(3224)] = 112203, + [SMALL_STATE(3225)] = 112216, + [SMALL_STATE(3226)] = 112229, + [SMALL_STATE(3227)] = 112242, + [SMALL_STATE(3228)] = 112255, + [SMALL_STATE(3229)] = 112268, + [SMALL_STATE(3230)] = 112281, + [SMALL_STATE(3231)] = 112294, + [SMALL_STATE(3232)] = 112307, + [SMALL_STATE(3233)] = 112320, + [SMALL_STATE(3234)] = 112333, + [SMALL_STATE(3235)] = 112346, + [SMALL_STATE(3236)] = 112359, + [SMALL_STATE(3237)] = 112372, + [SMALL_STATE(3238)] = 112385, + [SMALL_STATE(3239)] = 112398, + [SMALL_STATE(3240)] = 112411, + [SMALL_STATE(3241)] = 112424, + [SMALL_STATE(3242)] = 112437, + [SMALL_STATE(3243)] = 112450, + [SMALL_STATE(3244)] = 112463, + [SMALL_STATE(3245)] = 112476, + [SMALL_STATE(3246)] = 112489, + [SMALL_STATE(3247)] = 112502, + [SMALL_STATE(3248)] = 112515, + [SMALL_STATE(3249)] = 112528, + [SMALL_STATE(3250)] = 112541, + [SMALL_STATE(3251)] = 112554, + [SMALL_STATE(3252)] = 112567, + [SMALL_STATE(3253)] = 112580, + [SMALL_STATE(3254)] = 112593, + [SMALL_STATE(3255)] = 112606, + [SMALL_STATE(3256)] = 112619, + [SMALL_STATE(3257)] = 112632, + [SMALL_STATE(3258)] = 112642, + [SMALL_STATE(3259)] = 112652, + [SMALL_STATE(3260)] = 112662, + [SMALL_STATE(3261)] = 112672, + [SMALL_STATE(3262)] = 112682, + [SMALL_STATE(3263)] = 112692, + [SMALL_STATE(3264)] = 112702, + [SMALL_STATE(3265)] = 112712, + [SMALL_STATE(3266)] = 112722, + [SMALL_STATE(3267)] = 112732, + [SMALL_STATE(3268)] = 112742, + [SMALL_STATE(3269)] = 112752, + [SMALL_STATE(3270)] = 112762, + [SMALL_STATE(3271)] = 112772, + [SMALL_STATE(3272)] = 112782, + [SMALL_STATE(3273)] = 112792, + [SMALL_STATE(3274)] = 112802, + [SMALL_STATE(3275)] = 112812, + [SMALL_STATE(3276)] = 112822, + [SMALL_STATE(3277)] = 112832, + [SMALL_STATE(3278)] = 112842, + [SMALL_STATE(3279)] = 112852, + [SMALL_STATE(3280)] = 112862, + [SMALL_STATE(3281)] = 112872, + [SMALL_STATE(3282)] = 112882, + [SMALL_STATE(3283)] = 112892, + [SMALL_STATE(3284)] = 112902, + [SMALL_STATE(3285)] = 112912, + [SMALL_STATE(3286)] = 112922, + [SMALL_STATE(3287)] = 112932, + [SMALL_STATE(3288)] = 112942, + [SMALL_STATE(3289)] = 112952, + [SMALL_STATE(3290)] = 112962, + [SMALL_STATE(3291)] = 112972, + [SMALL_STATE(3292)] = 112982, + [SMALL_STATE(3293)] = 112992, + [SMALL_STATE(3294)] = 113002, + [SMALL_STATE(3295)] = 113012, + [SMALL_STATE(3296)] = 113022, + [SMALL_STATE(3297)] = 113032, + [SMALL_STATE(3298)] = 113042, + [SMALL_STATE(3299)] = 113052, + [SMALL_STATE(3300)] = 113062, + [SMALL_STATE(3301)] = 113072, + [SMALL_STATE(3302)] = 113082, + [SMALL_STATE(3303)] = 113092, + [SMALL_STATE(3304)] = 113102, + [SMALL_STATE(3305)] = 113112, + [SMALL_STATE(3306)] = 113122, + [SMALL_STATE(3307)] = 113132, + [SMALL_STATE(3308)] = 113142, + [SMALL_STATE(3309)] = 113152, + [SMALL_STATE(3310)] = 113162, + [SMALL_STATE(3311)] = 113172, + [SMALL_STATE(3312)] = 113182, + [SMALL_STATE(3313)] = 113192, + [SMALL_STATE(3314)] = 113202, + [SMALL_STATE(3315)] = 113212, + [SMALL_STATE(3316)] = 113222, + [SMALL_STATE(3317)] = 113232, + [SMALL_STATE(3318)] = 113242, + [SMALL_STATE(3319)] = 113252, + [SMALL_STATE(3320)] = 113262, + [SMALL_STATE(3321)] = 113272, + [SMALL_STATE(3322)] = 113282, + [SMALL_STATE(3323)] = 113292, + [SMALL_STATE(3324)] = 113302, + [SMALL_STATE(3325)] = 113312, + [SMALL_STATE(3326)] = 113322, + [SMALL_STATE(3327)] = 113332, + [SMALL_STATE(3328)] = 113342, + [SMALL_STATE(3329)] = 113352, + [SMALL_STATE(3330)] = 113362, + [SMALL_STATE(3331)] = 113372, + [SMALL_STATE(3332)] = 113382, + [SMALL_STATE(3333)] = 113392, + [SMALL_STATE(3334)] = 113402, + [SMALL_STATE(3335)] = 113412, + [SMALL_STATE(3336)] = 113422, + [SMALL_STATE(3337)] = 113432, + [SMALL_STATE(3338)] = 113442, + [SMALL_STATE(3339)] = 113452, + [SMALL_STATE(3340)] = 113462, + [SMALL_STATE(3341)] = 113472, + [SMALL_STATE(3342)] = 113482, + [SMALL_STATE(3343)] = 113492, + [SMALL_STATE(3344)] = 113502, + [SMALL_STATE(3345)] = 113512, + [SMALL_STATE(3346)] = 113522, + [SMALL_STATE(3347)] = 113532, + [SMALL_STATE(3348)] = 113542, + [SMALL_STATE(3349)] = 113552, + [SMALL_STATE(3350)] = 113562, + [SMALL_STATE(3351)] = 113572, + [SMALL_STATE(3352)] = 113582, + [SMALL_STATE(3353)] = 113592, + [SMALL_STATE(3354)] = 113602, + [SMALL_STATE(3355)] = 113612, + [SMALL_STATE(3356)] = 113622, + [SMALL_STATE(3357)] = 113632, + [SMALL_STATE(3358)] = 113642, + [SMALL_STATE(3359)] = 113652, + [SMALL_STATE(3360)] = 113662, + [SMALL_STATE(3361)] = 113672, + [SMALL_STATE(3362)] = 113682, + [SMALL_STATE(3363)] = 113692, + [SMALL_STATE(3364)] = 113702, + [SMALL_STATE(3365)] = 113712, + [SMALL_STATE(3366)] = 113722, + [SMALL_STATE(3367)] = 113732, + [SMALL_STATE(3368)] = 113742, + [SMALL_STATE(3369)] = 113752, + [SMALL_STATE(3370)] = 113762, + [SMALL_STATE(3371)] = 113772, + [SMALL_STATE(3372)] = 113782, + [SMALL_STATE(3373)] = 113792, + [SMALL_STATE(3374)] = 113802, + [SMALL_STATE(3375)] = 113812, + [SMALL_STATE(3376)] = 113822, + [SMALL_STATE(3377)] = 113832, + [SMALL_STATE(3378)] = 113842, + [SMALL_STATE(3379)] = 113852, + [SMALL_STATE(3380)] = 113862, + [SMALL_STATE(3381)] = 113872, + [SMALL_STATE(3382)] = 113882, + [SMALL_STATE(3383)] = 113892, + [SMALL_STATE(3384)] = 113902, + [SMALL_STATE(3385)] = 113912, + [SMALL_STATE(3386)] = 113922, + [SMALL_STATE(3387)] = 113932, + [SMALL_STATE(3388)] = 113942, + [SMALL_STATE(3389)] = 113952, + [SMALL_STATE(3390)] = 113962, + [SMALL_STATE(3391)] = 113972, + [SMALL_STATE(3392)] = 113982, + [SMALL_STATE(3393)] = 113992, + [SMALL_STATE(3394)] = 114002, + [SMALL_STATE(3395)] = 114012, + [SMALL_STATE(3396)] = 114022, + [SMALL_STATE(3397)] = 114032, + [SMALL_STATE(3398)] = 114042, + [SMALL_STATE(3399)] = 114052, + [SMALL_STATE(3400)] = 114062, + [SMALL_STATE(3401)] = 114072, + [SMALL_STATE(3402)] = 114082, + [SMALL_STATE(3403)] = 114092, + [SMALL_STATE(3404)] = 114102, + [SMALL_STATE(3405)] = 114112, + [SMALL_STATE(3406)] = 114122, + [SMALL_STATE(3407)] = 114132, + [SMALL_STATE(3408)] = 114142, + [SMALL_STATE(3409)] = 114152, + [SMALL_STATE(3410)] = 114162, + [SMALL_STATE(3411)] = 114172, + [SMALL_STATE(3412)] = 114182, + [SMALL_STATE(3413)] = 114192, + [SMALL_STATE(3414)] = 114202, + [SMALL_STATE(3415)] = 114212, + [SMALL_STATE(3416)] = 114222, + [SMALL_STATE(3417)] = 114232, + [SMALL_STATE(3418)] = 114242, + [SMALL_STATE(3419)] = 114252, + [SMALL_STATE(3420)] = 114262, + [SMALL_STATE(3421)] = 114272, + [SMALL_STATE(3422)] = 114282, + [SMALL_STATE(3423)] = 114292, + [SMALL_STATE(3424)] = 114302, + [SMALL_STATE(3425)] = 114312, + [SMALL_STATE(3426)] = 114322, + [SMALL_STATE(3427)] = 114332, + [SMALL_STATE(3428)] = 114342, + [SMALL_STATE(3429)] = 114352, + [SMALL_STATE(3430)] = 114362, + [SMALL_STATE(3431)] = 114372, + [SMALL_STATE(3432)] = 114382, + [SMALL_STATE(3433)] = 114392, + [SMALL_STATE(3434)] = 114402, + [SMALL_STATE(3435)] = 114412, + [SMALL_STATE(3436)] = 114422, + [SMALL_STATE(3437)] = 114432, + [SMALL_STATE(3438)] = 114442, + [SMALL_STATE(3439)] = 114452, + [SMALL_STATE(3440)] = 114462, + [SMALL_STATE(3441)] = 114472, + [SMALL_STATE(3442)] = 114482, + [SMALL_STATE(3443)] = 114492, + [SMALL_STATE(3444)] = 114502, + [SMALL_STATE(3445)] = 114512, + [SMALL_STATE(3446)] = 114522, + [SMALL_STATE(3447)] = 114532, + [SMALL_STATE(3448)] = 114542, + [SMALL_STATE(3449)] = 114552, + [SMALL_STATE(3450)] = 114562, + [SMALL_STATE(3451)] = 114572, + [SMALL_STATE(3452)] = 114582, + [SMALL_STATE(3453)] = 114592, + [SMALL_STATE(3454)] = 114602, + [SMALL_STATE(3455)] = 114612, + [SMALL_STATE(3456)] = 114622, + [SMALL_STATE(3457)] = 114632, + [SMALL_STATE(3458)] = 114642, + [SMALL_STATE(3459)] = 114652, + [SMALL_STATE(3460)] = 114662, + [SMALL_STATE(3461)] = 114672, + [SMALL_STATE(3462)] = 114682, + [SMALL_STATE(3463)] = 114692, + [SMALL_STATE(3464)] = 114702, + [SMALL_STATE(3465)] = 114712, + [SMALL_STATE(3466)] = 114722, + [SMALL_STATE(3467)] = 114732, + [SMALL_STATE(3468)] = 114742, + [SMALL_STATE(3469)] = 114752, + [SMALL_STATE(3470)] = 114762, + [SMALL_STATE(3471)] = 114772, + [SMALL_STATE(3472)] = 114782, + [SMALL_STATE(3473)] = 114792, + [SMALL_STATE(3474)] = 114802, + [SMALL_STATE(3475)] = 114812, + [SMALL_STATE(3476)] = 114822, + [SMALL_STATE(3477)] = 114832, + [SMALL_STATE(3478)] = 114842, + [SMALL_STATE(3479)] = 114852, + [SMALL_STATE(3480)] = 114862, + [SMALL_STATE(3481)] = 114872, + [SMALL_STATE(3482)] = 114882, + [SMALL_STATE(3483)] = 114892, + [SMALL_STATE(3484)] = 114902, + [SMALL_STATE(3485)] = 114912, + [SMALL_STATE(3486)] = 114922, + [SMALL_STATE(3487)] = 114932, + [SMALL_STATE(3488)] = 114942, + [SMALL_STATE(3489)] = 114952, + [SMALL_STATE(3490)] = 114962, + [SMALL_STATE(3491)] = 114972, + [SMALL_STATE(3492)] = 114982, + [SMALL_STATE(3493)] = 114992, + [SMALL_STATE(3494)] = 115002, + [SMALL_STATE(3495)] = 115012, + [SMALL_STATE(3496)] = 115022, + [SMALL_STATE(3497)] = 115032, + [SMALL_STATE(3498)] = 115042, + [SMALL_STATE(3499)] = 115052, + [SMALL_STATE(3500)] = 115062, + [SMALL_STATE(3501)] = 115072, + [SMALL_STATE(3502)] = 115082, + [SMALL_STATE(3503)] = 115092, + [SMALL_STATE(3504)] = 115102, + [SMALL_STATE(3505)] = 115112, + [SMALL_STATE(3506)] = 115122, + [SMALL_STATE(3507)] = 115132, + [SMALL_STATE(3508)] = 115142, + [SMALL_STATE(3509)] = 115152, + [SMALL_STATE(3510)] = 115162, + [SMALL_STATE(3511)] = 115172, + [SMALL_STATE(3512)] = 115182, + [SMALL_STATE(3513)] = 115192, + [SMALL_STATE(3514)] = 115202, + [SMALL_STATE(3515)] = 115212, + [SMALL_STATE(3516)] = 115222, + [SMALL_STATE(3517)] = 115232, + [SMALL_STATE(3518)] = 115242, + [SMALL_STATE(3519)] = 115252, + [SMALL_STATE(3520)] = 115262, + [SMALL_STATE(3521)] = 115272, + [SMALL_STATE(3522)] = 115282, + [SMALL_STATE(3523)] = 115292, + [SMALL_STATE(3524)] = 115302, + [SMALL_STATE(3525)] = 115312, + [SMALL_STATE(3526)] = 115322, + [SMALL_STATE(3527)] = 115332, + [SMALL_STATE(3528)] = 115342, + [SMALL_STATE(3529)] = 115352, + [SMALL_STATE(3530)] = 115362, + [SMALL_STATE(3531)] = 115372, + [SMALL_STATE(3532)] = 115382, + [SMALL_STATE(3533)] = 115392, + [SMALL_STATE(3534)] = 115402, + [SMALL_STATE(3535)] = 115412, + [SMALL_STATE(3536)] = 115422, + [SMALL_STATE(3537)] = 115432, + [SMALL_STATE(3538)] = 115442, + [SMALL_STATE(3539)] = 115452, + [SMALL_STATE(3540)] = 115462, + [SMALL_STATE(3541)] = 115472, + [SMALL_STATE(3542)] = 115482, + [SMALL_STATE(3543)] = 115492, + [SMALL_STATE(3544)] = 115502, + [SMALL_STATE(3545)] = 115512, + [SMALL_STATE(3546)] = 115522, + [SMALL_STATE(3547)] = 115532, + [SMALL_STATE(3548)] = 115542, + [SMALL_STATE(3549)] = 115552, + [SMALL_STATE(3550)] = 115562, + [SMALL_STATE(3551)] = 115572, + [SMALL_STATE(3552)] = 115582, + [SMALL_STATE(3553)] = 115592, + [SMALL_STATE(3554)] = 115602, + [SMALL_STATE(3555)] = 115612, + [SMALL_STATE(3556)] = 115622, + [SMALL_STATE(3557)] = 115632, + [SMALL_STATE(3558)] = 115642, + [SMALL_STATE(3559)] = 115652, + [SMALL_STATE(3560)] = 115662, + [SMALL_STATE(3561)] = 115672, + [SMALL_STATE(3562)] = 115682, + [SMALL_STATE(3563)] = 115692, + [SMALL_STATE(3564)] = 115702, + [SMALL_STATE(3565)] = 115712, + [SMALL_STATE(3566)] = 115722, + [SMALL_STATE(3567)] = 115732, + [SMALL_STATE(3568)] = 115742, + [SMALL_STATE(3569)] = 115752, + [SMALL_STATE(3570)] = 115762, + [SMALL_STATE(3571)] = 115772, + [SMALL_STATE(3572)] = 115782, + [SMALL_STATE(3573)] = 115792, + [SMALL_STATE(3574)] = 115802, + [SMALL_STATE(3575)] = 115812, + [SMALL_STATE(3576)] = 115822, + [SMALL_STATE(3577)] = 115832, + [SMALL_STATE(3578)] = 115842, + [SMALL_STATE(3579)] = 115852, + [SMALL_STATE(3580)] = 115862, + [SMALL_STATE(3581)] = 115872, + [SMALL_STATE(3582)] = 115882, + [SMALL_STATE(3583)] = 115892, + [SMALL_STATE(3584)] = 115902, + [SMALL_STATE(3585)] = 115912, + [SMALL_STATE(3586)] = 115922, + [SMALL_STATE(3587)] = 115932, + [SMALL_STATE(3588)] = 115942, + [SMALL_STATE(3589)] = 115952, + [SMALL_STATE(3590)] = 115962, + [SMALL_STATE(3591)] = 115972, + [SMALL_STATE(3592)] = 115982, + [SMALL_STATE(3593)] = 115992, + [SMALL_STATE(3594)] = 116002, + [SMALL_STATE(3595)] = 116012, + [SMALL_STATE(3596)] = 116022, + [SMALL_STATE(3597)] = 116032, + [SMALL_STATE(3598)] = 116042, + [SMALL_STATE(3599)] = 116052, + [SMALL_STATE(3600)] = 116062, + [SMALL_STATE(3601)] = 116072, + [SMALL_STATE(3602)] = 116082, + [SMALL_STATE(3603)] = 116092, + [SMALL_STATE(3604)] = 116102, + [SMALL_STATE(3605)] = 116112, + [SMALL_STATE(3606)] = 116122, + [SMALL_STATE(3607)] = 116132, + [SMALL_STATE(3608)] = 116142, + [SMALL_STATE(3609)] = 116152, + [SMALL_STATE(3610)] = 116162, + [SMALL_STATE(3611)] = 116172, + [SMALL_STATE(3612)] = 116182, + [SMALL_STATE(3613)] = 116192, + [SMALL_STATE(3614)] = 116202, + [SMALL_STATE(3615)] = 116212, + [SMALL_STATE(3616)] = 116222, + [SMALL_STATE(3617)] = 116232, + [SMALL_STATE(3618)] = 116242, + [SMALL_STATE(3619)] = 116252, + [SMALL_STATE(3620)] = 116262, + [SMALL_STATE(3621)] = 116272, + [SMALL_STATE(3622)] = 116282, + [SMALL_STATE(3623)] = 116292, + [SMALL_STATE(3624)] = 116302, + [SMALL_STATE(3625)] = 116312, + [SMALL_STATE(3626)] = 116322, + [SMALL_STATE(3627)] = 116332, + [SMALL_STATE(3628)] = 116342, + [SMALL_STATE(3629)] = 116352, + [SMALL_STATE(3630)] = 116362, + [SMALL_STATE(3631)] = 116372, + [SMALL_STATE(3632)] = 116382, + [SMALL_STATE(3633)] = 116392, + [SMALL_STATE(3634)] = 116402, + [SMALL_STATE(3635)] = 116412, + [SMALL_STATE(3636)] = 116422, + [SMALL_STATE(3637)] = 116432, + [SMALL_STATE(3638)] = 116442, + [SMALL_STATE(3639)] = 116452, + [SMALL_STATE(3640)] = 116462, + [SMALL_STATE(3641)] = 116472, + [SMALL_STATE(3642)] = 116482, + [SMALL_STATE(3643)] = 116492, + [SMALL_STATE(3644)] = 116502, + [SMALL_STATE(3645)] = 116512, + [SMALL_STATE(3646)] = 116522, + [SMALL_STATE(3647)] = 116532, + [SMALL_STATE(3648)] = 116542, + [SMALL_STATE(3649)] = 116552, + [SMALL_STATE(3650)] = 116562, + [SMALL_STATE(3651)] = 116572, + [SMALL_STATE(3652)] = 116582, + [SMALL_STATE(3653)] = 116592, + [SMALL_STATE(3654)] = 116602, + [SMALL_STATE(3655)] = 116612, + [SMALL_STATE(3656)] = 116622, + [SMALL_STATE(3657)] = 116632, + [SMALL_STATE(3658)] = 116642, + [SMALL_STATE(3659)] = 116652, + [SMALL_STATE(3660)] = 116662, + [SMALL_STATE(3661)] = 116672, + [SMALL_STATE(3662)] = 116682, + [SMALL_STATE(3663)] = 116692, + [SMALL_STATE(3664)] = 116702, + [SMALL_STATE(3665)] = 116712, + [SMALL_STATE(3666)] = 116722, + [SMALL_STATE(3667)] = 116732, + [SMALL_STATE(3668)] = 116742, + [SMALL_STATE(3669)] = 116752, + [SMALL_STATE(3670)] = 116762, + [SMALL_STATE(3671)] = 116772, + [SMALL_STATE(3672)] = 116782, + [SMALL_STATE(3673)] = 116792, + [SMALL_STATE(3674)] = 116802, + [SMALL_STATE(3675)] = 116812, + [SMALL_STATE(3676)] = 116822, + [SMALL_STATE(3677)] = 116832, + [SMALL_STATE(3678)] = 116842, + [SMALL_STATE(3679)] = 116852, + [SMALL_STATE(3680)] = 116862, + [SMALL_STATE(3681)] = 116872, + [SMALL_STATE(3682)] = 116882, + [SMALL_STATE(3683)] = 116892, + [SMALL_STATE(3684)] = 116902, + [SMALL_STATE(3685)] = 116912, + [SMALL_STATE(3686)] = 116922, + [SMALL_STATE(3687)] = 116932, + [SMALL_STATE(3688)] = 116942, + [SMALL_STATE(3689)] = 116952, + [SMALL_STATE(3690)] = 116962, + [SMALL_STATE(3691)] = 116972, + [SMALL_STATE(3692)] = 116982, + [SMALL_STATE(3693)] = 116992, + [SMALL_STATE(3694)] = 117002, + [SMALL_STATE(3695)] = 117012, + [SMALL_STATE(3696)] = 117022, + [SMALL_STATE(3697)] = 117032, + [SMALL_STATE(3698)] = 117042, + [SMALL_STATE(3699)] = 117052, + [SMALL_STATE(3700)] = 117062, + [SMALL_STATE(3701)] = 117072, + [SMALL_STATE(3702)] = 117082, + [SMALL_STATE(3703)] = 117092, + [SMALL_STATE(3704)] = 117102, + [SMALL_STATE(3705)] = 117112, + [SMALL_STATE(3706)] = 117122, + [SMALL_STATE(3707)] = 117132, + [SMALL_STATE(3708)] = 117142, + [SMALL_STATE(3709)] = 117152, + [SMALL_STATE(3710)] = 117162, + [SMALL_STATE(3711)] = 117172, + [SMALL_STATE(3712)] = 117182, + [SMALL_STATE(3713)] = 117192, + [SMALL_STATE(3714)] = 117202, + [SMALL_STATE(3715)] = 117212, + [SMALL_STATE(3716)] = 117222, + [SMALL_STATE(3717)] = 117232, + [SMALL_STATE(3718)] = 117242, + [SMALL_STATE(3719)] = 117252, + [SMALL_STATE(3720)] = 117262, + [SMALL_STATE(3721)] = 117272, + [SMALL_STATE(3722)] = 117282, + [SMALL_STATE(3723)] = 117292, + [SMALL_STATE(3724)] = 117302, + [SMALL_STATE(3725)] = 117312, + [SMALL_STATE(3726)] = 117322, + [SMALL_STATE(3727)] = 117332, + [SMALL_STATE(3728)] = 117342, + [SMALL_STATE(3729)] = 117352, + [SMALL_STATE(3730)] = 117362, + [SMALL_STATE(3731)] = 117372, + [SMALL_STATE(3732)] = 117382, + [SMALL_STATE(3733)] = 117392, + [SMALL_STATE(3734)] = 117402, + [SMALL_STATE(3735)] = 117412, + [SMALL_STATE(3736)] = 117422, + [SMALL_STATE(3737)] = 117432, + [SMALL_STATE(3738)] = 117442, + [SMALL_STATE(3739)] = 117452, + [SMALL_STATE(3740)] = 117462, + [SMALL_STATE(3741)] = 117472, + [SMALL_STATE(3742)] = 117482, + [SMALL_STATE(3743)] = 117492, + [SMALL_STATE(3744)] = 117502, + [SMALL_STATE(3745)] = 117512, + [SMALL_STATE(3746)] = 117522, + [SMALL_STATE(3747)] = 117532, + [SMALL_STATE(3748)] = 117542, + [SMALL_STATE(3749)] = 117552, + [SMALL_STATE(3750)] = 117562, + [SMALL_STATE(3751)] = 117572, + [SMALL_STATE(3752)] = 117582, + [SMALL_STATE(3753)] = 117592, + [SMALL_STATE(3754)] = 117602, + [SMALL_STATE(3755)] = 117612, + [SMALL_STATE(3756)] = 117622, + [SMALL_STATE(3757)] = 117632, + [SMALL_STATE(3758)] = 117642, + [SMALL_STATE(3759)] = 117652, + [SMALL_STATE(3760)] = 117662, + [SMALL_STATE(3761)] = 117672, + [SMALL_STATE(3762)] = 117682, + [SMALL_STATE(3763)] = 117692, + [SMALL_STATE(3764)] = 117702, + [SMALL_STATE(3765)] = 117712, + [SMALL_STATE(3766)] = 117722, + [SMALL_STATE(3767)] = 117732, + [SMALL_STATE(3768)] = 117742, + [SMALL_STATE(3769)] = 117752, + [SMALL_STATE(3770)] = 117762, + [SMALL_STATE(3771)] = 117772, + [SMALL_STATE(3772)] = 117782, + [SMALL_STATE(3773)] = 117792, + [SMALL_STATE(3774)] = 117802, + [SMALL_STATE(3775)] = 117812, + [SMALL_STATE(3776)] = 117822, + [SMALL_STATE(3777)] = 117832, + [SMALL_STATE(3778)] = 117842, + [SMALL_STATE(3779)] = 117852, + [SMALL_STATE(3780)] = 117862, + [SMALL_STATE(3781)] = 117872, + [SMALL_STATE(3782)] = 117882, + [SMALL_STATE(3783)] = 117892, + [SMALL_STATE(3784)] = 117902, + [SMALL_STATE(3785)] = 117912, + [SMALL_STATE(3786)] = 117922, + [SMALL_STATE(3787)] = 117932, + [SMALL_STATE(3788)] = 117942, + [SMALL_STATE(3789)] = 117952, + [SMALL_STATE(3790)] = 117962, + [SMALL_STATE(3791)] = 117972, + [SMALL_STATE(3792)] = 117982, + [SMALL_STATE(3793)] = 117992, + [SMALL_STATE(3794)] = 118002, + [SMALL_STATE(3795)] = 118012, + [SMALL_STATE(3796)] = 118022, + [SMALL_STATE(3797)] = 118032, + [SMALL_STATE(3798)] = 118042, + [SMALL_STATE(3799)] = 118052, + [SMALL_STATE(3800)] = 118062, + [SMALL_STATE(3801)] = 118072, + [SMALL_STATE(3802)] = 118082, + [SMALL_STATE(3803)] = 118092, + [SMALL_STATE(3804)] = 118102, + [SMALL_STATE(3805)] = 118112, + [SMALL_STATE(3806)] = 118122, + [SMALL_STATE(3807)] = 118132, + [SMALL_STATE(3808)] = 118142, + [SMALL_STATE(3809)] = 118152, + [SMALL_STATE(3810)] = 118162, + [SMALL_STATE(3811)] = 118172, + [SMALL_STATE(3812)] = 118182, + [SMALL_STATE(3813)] = 118192, + [SMALL_STATE(3814)] = 118202, + [SMALL_STATE(3815)] = 118212, + [SMALL_STATE(3816)] = 118222, + [SMALL_STATE(3817)] = 118232, + [SMALL_STATE(3818)] = 118242, + [SMALL_STATE(3819)] = 118252, + [SMALL_STATE(3820)] = 118262, + [SMALL_STATE(3821)] = 118272, + [SMALL_STATE(3822)] = 118282, + [SMALL_STATE(3823)] = 118292, + [SMALL_STATE(3824)] = 118302, + [SMALL_STATE(3825)] = 118312, + [SMALL_STATE(3826)] = 118322, + [SMALL_STATE(3827)] = 118332, + [SMALL_STATE(3828)] = 118342, + [SMALL_STATE(3829)] = 118352, + [SMALL_STATE(3830)] = 118362, + [SMALL_STATE(3831)] = 118372, + [SMALL_STATE(3832)] = 118382, + [SMALL_STATE(3833)] = 118392, + [SMALL_STATE(3834)] = 118402, + [SMALL_STATE(3835)] = 118412, + [SMALL_STATE(3836)] = 118422, + [SMALL_STATE(3837)] = 118432, + [SMALL_STATE(3838)] = 118442, + [SMALL_STATE(3839)] = 118452, + [SMALL_STATE(3840)] = 118462, + [SMALL_STATE(3841)] = 118472, + [SMALL_STATE(3842)] = 118482, + [SMALL_STATE(3843)] = 118492, + [SMALL_STATE(3844)] = 118502, + [SMALL_STATE(3845)] = 118512, + [SMALL_STATE(3846)] = 118522, + [SMALL_STATE(3847)] = 118532, + [SMALL_STATE(3848)] = 118542, + [SMALL_STATE(3849)] = 118552, + [SMALL_STATE(3850)] = 118562, + [SMALL_STATE(3851)] = 118572, + [SMALL_STATE(3852)] = 118582, + [SMALL_STATE(3853)] = 118592, + [SMALL_STATE(3854)] = 118602, + [SMALL_STATE(3855)] = 118612, + [SMALL_STATE(3856)] = 118622, + [SMALL_STATE(3857)] = 118632, + [SMALL_STATE(3858)] = 118642, + [SMALL_STATE(3859)] = 118652, + [SMALL_STATE(3860)] = 118662, + [SMALL_STATE(3861)] = 118672, + [SMALL_STATE(3862)] = 118682, + [SMALL_STATE(3863)] = 118692, + [SMALL_STATE(3864)] = 118702, + [SMALL_STATE(3865)] = 118712, + [SMALL_STATE(3866)] = 118722, + [SMALL_STATE(3867)] = 118732, + [SMALL_STATE(3868)] = 118742, + [SMALL_STATE(3869)] = 118752, + [SMALL_STATE(3870)] = 118762, + [SMALL_STATE(3871)] = 118772, + [SMALL_STATE(3872)] = 118782, + [SMALL_STATE(3873)] = 118792, + [SMALL_STATE(3874)] = 118802, + [SMALL_STATE(3875)] = 118812, + [SMALL_STATE(3876)] = 118822, + [SMALL_STATE(3877)] = 118832, + [SMALL_STATE(3878)] = 118842, + [SMALL_STATE(3879)] = 118852, + [SMALL_STATE(3880)] = 118862, + [SMALL_STATE(3881)] = 118872, + [SMALL_STATE(3882)] = 118882, + [SMALL_STATE(3883)] = 118892, + [SMALL_STATE(3884)] = 118902, + [SMALL_STATE(3885)] = 118912, + [SMALL_STATE(3886)] = 118922, + [SMALL_STATE(3887)] = 118932, + [SMALL_STATE(3888)] = 118942, + [SMALL_STATE(3889)] = 118952, + [SMALL_STATE(3890)] = 118962, + [SMALL_STATE(3891)] = 118972, + [SMALL_STATE(3892)] = 118982, + [SMALL_STATE(3893)] = 118992, + [SMALL_STATE(3894)] = 119002, + [SMALL_STATE(3895)] = 119012, + [SMALL_STATE(3896)] = 119022, + [SMALL_STATE(3897)] = 119032, + [SMALL_STATE(3898)] = 119042, + [SMALL_STATE(3899)] = 119052, + [SMALL_STATE(3900)] = 119062, + [SMALL_STATE(3901)] = 119072, + [SMALL_STATE(3902)] = 119082, + [SMALL_STATE(3903)] = 119092, + [SMALL_STATE(3904)] = 119102, + [SMALL_STATE(3905)] = 119112, + [SMALL_STATE(3906)] = 119122, + [SMALL_STATE(3907)] = 119132, + [SMALL_STATE(3908)] = 119142, + [SMALL_STATE(3909)] = 119152, + [SMALL_STATE(3910)] = 119162, + [SMALL_STATE(3911)] = 119172, + [SMALL_STATE(3912)] = 119182, + [SMALL_STATE(3913)] = 119192, + [SMALL_STATE(3914)] = 119202, + [SMALL_STATE(3915)] = 119212, + [SMALL_STATE(3916)] = 119222, + [SMALL_STATE(3917)] = 119232, + [SMALL_STATE(3918)] = 119242, + [SMALL_STATE(3919)] = 119252, + [SMALL_STATE(3920)] = 119262, + [SMALL_STATE(3921)] = 119272, + [SMALL_STATE(3922)] = 119282, + [SMALL_STATE(3923)] = 119292, + [SMALL_STATE(3924)] = 119302, + [SMALL_STATE(3925)] = 119312, + [SMALL_STATE(3926)] = 119322, + [SMALL_STATE(3927)] = 119332, + [SMALL_STATE(3928)] = 119342, + [SMALL_STATE(3929)] = 119352, + [SMALL_STATE(3930)] = 119362, + [SMALL_STATE(3931)] = 119372, + [SMALL_STATE(3932)] = 119382, + [SMALL_STATE(3933)] = 119392, + [SMALL_STATE(3934)] = 119402, + [SMALL_STATE(3935)] = 119412, + [SMALL_STATE(3936)] = 119422, + [SMALL_STATE(3937)] = 119432, + [SMALL_STATE(3938)] = 119442, + [SMALL_STATE(3939)] = 119452, + [SMALL_STATE(3940)] = 119462, + [SMALL_STATE(3941)] = 119472, + [SMALL_STATE(3942)] = 119482, + [SMALL_STATE(3943)] = 119492, + [SMALL_STATE(3944)] = 119502, + [SMALL_STATE(3945)] = 119512, + [SMALL_STATE(3946)] = 119522, + [SMALL_STATE(3947)] = 119532, + [SMALL_STATE(3948)] = 119542, + [SMALL_STATE(3949)] = 119552, + [SMALL_STATE(3950)] = 119562, + [SMALL_STATE(3951)] = 119572, + [SMALL_STATE(3952)] = 119582, + [SMALL_STATE(3953)] = 119592, + [SMALL_STATE(3954)] = 119602, + [SMALL_STATE(3955)] = 119612, + [SMALL_STATE(3956)] = 119622, + [SMALL_STATE(3957)] = 119632, + [SMALL_STATE(3958)] = 119642, + [SMALL_STATE(3959)] = 119652, + [SMALL_STATE(3960)] = 119662, + [SMALL_STATE(3961)] = 119672, + [SMALL_STATE(3962)] = 119682, + [SMALL_STATE(3963)] = 119692, + [SMALL_STATE(3964)] = 119702, + [SMALL_STATE(3965)] = 119712, + [SMALL_STATE(3966)] = 119722, + [SMALL_STATE(3967)] = 119732, + [SMALL_STATE(3968)] = 119742, + [SMALL_STATE(3969)] = 119752, + [SMALL_STATE(3970)] = 119762, + [SMALL_STATE(3971)] = 119772, + [SMALL_STATE(3972)] = 119782, + [SMALL_STATE(3973)] = 119792, + [SMALL_STATE(3974)] = 119802, + [SMALL_STATE(3975)] = 119812, + [SMALL_STATE(3976)] = 119822, + [SMALL_STATE(3977)] = 119832, + [SMALL_STATE(3978)] = 119842, + [SMALL_STATE(3979)] = 119852, + [SMALL_STATE(3980)] = 119862, + [SMALL_STATE(3981)] = 119872, + [SMALL_STATE(3982)] = 119882, + [SMALL_STATE(3983)] = 119892, + [SMALL_STATE(3984)] = 119902, + [SMALL_STATE(3985)] = 119906, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -164532,3703 +165113,3769 @@ static const TSParseActionEntry ts_parse_actions[] = { [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body_with_optional_parameter, 2), - [247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body_with_optional_parameter, 1), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body, 1), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1000), - [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2318), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2317), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2215), - [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3256), - [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3255), - [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2877), - [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2876), - [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(204), - [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(203), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2875), - [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2874), - [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2873), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2871), - [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2870), - [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(842), - [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(454), - [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2869), - [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2868), - [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2867), - [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(439), - [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(41), - [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(42), - [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(130), - [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2864), - [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2863), - [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2862), - [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2861), - [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2860), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2860), - [509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3168), - [512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(449), - [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2858), - [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2857), - [521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2856), - [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2855), - [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2852), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2851), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2847), - [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(841), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body, 2), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(780), - [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2338), - [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2347), - [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2208), - [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3230), - [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3229), - [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2730), - [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2729), - [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(229), - [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(230), - [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2728), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2727), - [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2726), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2725), - [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2724), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(700), - [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(447), - [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2723), - [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2722), - [686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2721), - [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(434), - [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(55), - [695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(58), - [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(131), - [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2720), - [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2719), - [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2718), - [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2717), - [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2716), - [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2716), - [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3232), - [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(452), - [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2714), - [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2713), - [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2712), - [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2710), - [737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2709), - [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2708), - [743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2707), - [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(629), - [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(710), - [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2333), - [755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2321), - [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2216), - [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3219), - [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3218), - [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2704), - [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2702), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(247), - [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(248), - [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2701), - [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2700), - [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2699), - [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2697), - [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2695), - [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(768), - [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(451), - [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2694), - [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2693), - [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2692), - [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(436), - [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(57), - [815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(56), - [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(142), - [821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2687), - [824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2686), - [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2685), - [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2684), - [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2683), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2683), - [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3236), - [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(448), - [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2681), - [848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2680), - [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2679), - [854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2678), - [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2677), - [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2676), - [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2675), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(625), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1063), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2300), - [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2299), - [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2219), - [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3250), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3249), - [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2846), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2845), - [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(168), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(170), - [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2842), - [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2841), - [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2840), - [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2839), - [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2838), - [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(581), - [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(443), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2837), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2833), - [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2832), - [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(435), - [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(43), - [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(44), - [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(135), - [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2831), - [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2830), - [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2829), - [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2828), - [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2827), - [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2827), - [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3216), - [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(456), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2824), - [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2823), - [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2822), - [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2821), - [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2820), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2517), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2818), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(775), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(845), - [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2237), - [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2236), - [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2226), - [1005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3234), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3233), - [1011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2764), - [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2763), - [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(214), - [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(215), - [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2760), - [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2759), - [1029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2754), - [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2753), - [1035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2750), - [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(632), - [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(444), - [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2749), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2748), - [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2747), - [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(431), - [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(53), - [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(54), - [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(145), - [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2746), - [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2745), - [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2743), - [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2741), - [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2740), - [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2740), - [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3231), - [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(455), - [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2738), - [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2737), - [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2736), - [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2735), - [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2733), - [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2732), - [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2731), - [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(635), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(977), - [1284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2275), - [1287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2274), - [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2227), - [1293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3244), - [1296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3243), - [1299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2817), - [1302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2816), - [1305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(169), - [1308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(173), - [1311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2815), - [1314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2814), - [1317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2813), - [1320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2812), - [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2811), - [1326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(493), - [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(450), - [1332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2810), - [1335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2809), - [1338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2808), - [1341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(430), - [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(45), - [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(48), - [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(138), - [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2807), - [1356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2806), - [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2805), - [1362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2804), - [1365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2802), - [1368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2802), - [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3217), - [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(440), - [1377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2800), - [1380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2799), - [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2795), - [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2794), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2793), - [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2792), - [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2791), - [1398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(705), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(535), - [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(2248), - [1489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(2247), - [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(2228), - [1495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3171), - [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3213), - [1501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3118), - [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3117), - [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(268), - [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(267), - [1513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3116), - [1516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3115), - [1519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3114), - [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3113), - [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3111), - [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(1019), - [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(441), - [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3109), - [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3108), - [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3107), - [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(432), - [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(2), - [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3), - [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(144), - [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), - [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3103), - [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3101), - [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3100), - [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3099), - [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3098), - [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3098), - [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3210), - [1578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(457), - [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3096), - [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3095), - [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3094), - [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3093), - [1593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3092), - [1596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3091), - [1599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3090), - [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(748), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [1687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(976), - [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2305), - [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2304), - [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2218), - [1699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3192), - [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3182), - [1705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2985), - [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3003), - [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(351), - [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(429), - [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3027), - [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3028), - [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3036), - [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3037), - [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3043), - [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1029), - [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(453), - [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3044), - [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3067), - [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3073), - [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(437), - [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(39), - [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(18), - [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(121), - [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3074), - [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3077), - [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3105), - [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3119), - [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3120), - [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3120), - [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3167), - [1780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(446), - [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3130), - [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3131), - [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3142), - [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3155), - [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3154), - [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3153), - [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3152), - [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(612), - [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(911), - [1810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2262), - [1813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2259), - [1816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2229), - [1819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3240), - [1822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3239), - [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2789), - [1828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2787), - [1831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(187), - [1834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(191), - [1837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2786), - [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2785), - [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2784), - [1846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2783), - [1849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2782), - [1852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(563), - [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(442), - [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2781), - [1861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2779), - [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2778), - [1867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(438), - [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(49), - [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(50), - [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(143), - [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2777), - [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2776), - [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2775), - [1888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2774), - [1891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2773), - [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2773), - [1897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3223), - [1900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(459), - [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2771), - [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2770), - [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2769), - [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2768), - [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2767), - [1918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2766), - [1921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2765), - [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(638), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(600), - [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2277), - [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2276), - [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2223), - [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3193), - [2040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3195), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3151), - [2046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3150), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(304), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(302), - [2055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3149), - [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3147), - [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3146), - [2064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3145), - [2067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3144), - [2070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1095), - [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(445), - [2076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3143), - [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3141), - [2082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3140), - [2085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(433), - [2088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(15), - [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(12), - [2094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(123), - [2097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3136), - [2100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3135), - [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3134), - [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3133), - [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3132), - [2112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3132), - [2115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3209), - [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(458), - [2121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3128), - [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3127), - [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3126), - [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3124), - [2133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3123), - [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3122), - [2139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3121), - [2142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(680), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [2433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1720), - [2436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2232), - [2439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2307), - [2442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2217), - [2445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3178), - [2448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3174), - [2451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2569), - [2454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2572), - [2457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(175), - [2460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(148), - [2463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2573), - [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2574), - [2469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2596), - [2472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2560), - [2475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2606), - [2478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2610), - [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2619), - [2484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2642), - [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(472), - [2490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(20), - [2493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(19), - [2496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(122), - [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2662), - [2502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2665), - [2505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2666), - [2508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2669), - [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2688), - [2514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2688), - [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3235), - [2520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(621), - [2523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2690), - [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2696), - [2529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2698), - [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2703), - [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2711), - [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2604), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), - [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2742), - [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1956), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_body_with_parameter, 2), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_body_with_parameter, 1), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(1838), - [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2340), - [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2346), - [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2210), - [2837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3165), - [2840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3166), - [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2972), - [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2973), - [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(419), - [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(416), - [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2974), - [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2984), - [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2865), - [2864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3010), - [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3012), - [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3018), - [2873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3020), - [2876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3033), - [2879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(475), - [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(14), - [2885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(13), - [2888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(139), - [2891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3064), - [2894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3065), - [2897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3066), - [2900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3075), - [2903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3076), - [2906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3076), - [2909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3172), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), - [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(615), - [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3079), - [2920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3102), - [2923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3106), - [2926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3110), - [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3112), - [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3009), - [2935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3129), - [2938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(1962), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2108), - [2950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2379), - [2953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2373), - [2956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2204), - [2959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3205), - [2962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3222), - [2965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2752), - [2968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2751), - [2971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(394), - [2974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(396), - [2977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2739), - [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2715), - [2983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2706), - [2986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2705), - [2989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2689), - [2992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2682), - [2995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2664), - [2998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2663), - [3001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(478), - [3004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(51), - [3007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(59), - [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(146), - [3013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2621), - [3016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2614), - [3019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2613), - [3022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2588), - [3025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2571), - [3028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2571), - [3031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3247), - [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1001), - [3037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2570), - [3040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2568), - [3043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2567), - [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2561), - [3049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2552), - [3052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2533), - [3055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2524), - [3058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2063), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2171), - [3074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2339), - [3077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2337), - [3080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2213), - [3083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3180), - [3086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3164), - [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2522), - [3092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2521), - [3095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(387), - [3098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(386), - [3101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2819), - [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2825), - [3107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2843), - [3110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2844), - [3113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2850), - [3116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2853), - [3119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2859), - [3122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2887), - [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(474), - [3128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(47), - [3131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(46), - [3134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(134), - [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2891), - [3140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2914), - [3143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2935), - [3146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2936), - [3149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2944), - [3152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2944), - [3155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3196), - [3158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1032), - [3161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2945), - [3164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2946), - [3167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2958), - [3170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2975), - [3173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2981), - [3176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2982), - [3179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2983), - [3182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2054), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(1964), - [3244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2378), - [3247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2377), - [3250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2203), - [3253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3253), - [3256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3206), - [3259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2889), - [3262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2890), - [3265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(412), - [3268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(413), - [3271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3056), - [3274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3050), - [3277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3034), - [3280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2854), - [3283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2849), - [3286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2848), - [3289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2656), - [3292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2652), - [3295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(463), - [3298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(22), - [3301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(23), - [3304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(132), - [3307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2650), - [3310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2531), - [3313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2532), - [3316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2691), - [3319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2559), - [3322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2559), - [3325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3251), - [3328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(573), - [3331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2562), - [3334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2594), - [3337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2595), - [3340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2597), - [3343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2627), - [3346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2628), - [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2629), - [3352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(1965), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1661), - [3360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2286), - [3363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2287), - [3366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2222), - [3369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3185), - [3372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3184), - [3375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2543), - [3378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2542), - [3381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(350), - [3384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(420), - [3387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2541), - [3390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2540), - [3393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2539), - [3396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2538), - [3399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2537), - [3402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2536), - [3405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2535), - [3408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2534), - [3411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(470), - [3414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(27), - [3417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(26), - [3420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(119), - [3423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2530), - [3426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2529), - [3429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2528), - [3432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2526), - [3435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2525), - [3438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2525), - [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3254), - [3444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(623), - [3447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2523), - [3450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2520), - [3453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2519), - [3456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2886), - [3459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2550), - [3462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2527), - [3465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2558), - [3468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1900), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [3687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2055), - [3690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2354), - [3693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2355), - [3696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2207), - [3699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3227), - [3702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3228), - [3705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3089), - [3708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3088), - [3711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(235), - [3714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(232), - [3717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3087), - [3720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3086), - [3723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3085), - [3726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3084), - [3729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3083), - [3732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3082), - [3735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3081), - [3738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3080), - [3741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(471), - [3744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4), - [3747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5), - [3750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(141), - [3753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3072), - [3756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3071), - [3759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3070), - [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3069), - [3765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3068), - [3768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3068), - [3771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3179), - [3774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(541), - [3777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3063), - [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3062), - [3783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3061), - [3786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3060), - [3789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3059), - [3792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3058), - [3795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3057), - [3798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1277), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [3859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1335), - [3862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2334), - [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2335), - [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2212), - [3871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3226), - [3874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3224), - [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2995), - [3880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2994), - [3883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(303), - [3886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(149), - [3889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2993), - [3892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2992), - [3895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2991), - [3898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2990), - [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2989), - [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2988), - [3907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2987), - [3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2986), - [3913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(465), - [3916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(21), - [3919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(24), - [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(120), - [3925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2980), - [3928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2979), - [3931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2978), - [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2977), - [3937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2976), - [3940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2976), - [3943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3191), - [3946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(747), - [3949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2971), - [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2970), - [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2969), - [3958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2968), - [3961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2967), - [3964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2966), - [3967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2965), - [3970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1105), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [4049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1602), - [4052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2278), - [4055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2279), - [4058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2202), - [4061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3190), - [4064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3189), - [4067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2580), - [4070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2579), - [4073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(318), - [4076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(319), - [4079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2578), - [4082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2577), - [4085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2576), - [4088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2575), - [4091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2566), - [4094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2565), - [4097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2564), - [4100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2563), - [4103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(469), - [4106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(30), - [4109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(29), - [4112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(124), - [4115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2557), - [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2556), - [4121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2555), - [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2554), - [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2553), - [4130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2553), - [4133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3252), - [4136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(626), - [4139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2551), - [4142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2549), - [4145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2548), - [4148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2547), - [4151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2546), - [4154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2545), - [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2544), - [4160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1841), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [4239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1779), - [4242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2319), - [4245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2320), - [4248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2214), - [4251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3169), - [4254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3163), - [4257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2744), - [4260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2755), - [4263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(375), - [4266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(380), - [4269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2757), - [4272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2790), - [4275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2796), - [4278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2803), - [4281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2826), - [4284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2834), - [4287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2835), - [4290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2836), - [4293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(473), - [4296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(17), - [4299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(16), - [4302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(118), - [4305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2734), - [4308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2866), - [4311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2872), - [4314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2880), - [4317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2882), - [4320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2882), - [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3201), - [4326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(619), - [4329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2895), - [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2918), - [4335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2926), - [4338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2928), - [4341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2941), - [4344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2942), - [4347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2964), - [4350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1959), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [4357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1543), - [4360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2263), - [4363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2264), - [4366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2221), - [4369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3199), - [4372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3198), - [4375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2609), - [4378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2608), - [4381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(298), - [4384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(301), - [4387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2607), - [4390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2605), - [4393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2603), - [4396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2602), - [4399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2601), - [4402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2600), - [4405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2599), - [4408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2598), - [4411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(460), - [4414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(34), - [4417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(33), - [4420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(127), - [4423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2593), - [4426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2592), - [4429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2591), - [4432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2590), - [4435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2589), - [4438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2589), - [4441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3245), - [4444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(630), - [4447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2587), - [4450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2586), - [4453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2585), - [4456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2584), - [4459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2583), - [4462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2582), - [4465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2581), - [4468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1782), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [4549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1897), - [4552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2358), - [4555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2360), - [4558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2205), - [4561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3211), - [4564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3212), - [4567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3137), - [4570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3148), - [4573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(406), - [4576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(405), - [4579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3156), - [4582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3157), - [4585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3158), - [4588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3159), - [4591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3160), - [4594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3161), - [4597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3097), - [4600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3078), - [4603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(477), - [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(9), - [4609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(8), - [4612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(140), - [4615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2801), - [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2798), - [4621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2797), - [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2788), - [4627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2780), - [4630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2780), - [4633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3225), - [4636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(608), - [4639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2761), - [4642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2758), - [4645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2756), - [4648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2660), - [4651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2659), - [4654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2648), - [4657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3125), - [4660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1963), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [4743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1484), - [4746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2249), - [4749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2231), - [4752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2230), - [4755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3204), - [4758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3202), - [4761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2639), - [4764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2638), - [4767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(286), - [4770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(287), - [4773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2637), - [4776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2636), - [4779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2635), - [4782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2634), - [4785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2633), - [4788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2632), - [4791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2631), - [4794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2630), - [4797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(468), - [4800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(37), - [4803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(36), - [4806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(129), - [4809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2626), - [4812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2625), - [4815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2624), - [4818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2623), - [4821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2622), - [4824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2622), - [4827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3242), - [4830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(636), - [4833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2620), - [4836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2618), - [4839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2617), - [4842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2616), - [4845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2615), - [4848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2612), - [4851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2611), - [4854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1723), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1425), - [4946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2233), - [4949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2235), - [4952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2225), - [4955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3215), - [4958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3214), - [4961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2674), - [4964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2673), - [4967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(265), - [4970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(266), - [4973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2672), - [4976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2671), - [4979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2670), - [4982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2668), - [4985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2667), - [4988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2661), - [4991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2658), - [4994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2657), - [4997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(467), - [5000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(52), - [5003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(40), - [5006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(117), - [5009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2655), - [5012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2654), - [5015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2653), - [5018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2651), - [5021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2649), - [5024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2649), - [5027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3241), - [5030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(639), - [5033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2647), - [5036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2646), - [5039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2645), - [5042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2644), - [5045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2643), - [5048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2641), - [5051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2640), - [5054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1664), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [5141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1899), - [5144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2250), - [5147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2251), - [5150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2224), - [5153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3237), - [5156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3238), - [5159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3055), - [5162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3054), - [5165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(190), - [5168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(188), - [5171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3053), - [5174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3052), - [5177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3051), - [5180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3049), - [5183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3048), - [5186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3047), - [5189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3046), - [5192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3045), - [5195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(476), - [5198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6), - [5201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(7), - [5204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(137), - [5207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3042), - [5210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3041), - [5213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3040), - [5216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3039), - [5219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3038), - [5222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3038), - [5225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3183), - [5228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(611), - [5231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3035), - [5234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3032), - [5237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3031), - [5240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3030), - [5243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3029), - [5246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3026), - [5249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3025), - [5252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1220), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [5257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1163), - [5260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2345), - [5263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2343), - [5266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2211), - [5269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3220), - [5272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3221), - [5275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2906), - [5278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2905), - [5281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(291), - [5284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(242), - [5287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2904), - [5290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2903), - [5293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2902), - [5296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2901), - [5299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2900), - [5302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2899), - [5305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2898), - [5308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2897), - [5311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(464), - [5314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(35), - [5317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(38), - [5320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(128), - [5323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2896), - [5326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2894), - [5329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2893), - [5332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2892), - [5335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2888), - [5338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2888), - [5341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3162), - [5344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(939), - [5347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2518), - [5350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2885), - [5353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2884), - [5356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2883), - [5359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2881), - [5362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2879), - [5365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2878), - [5368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1190), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [5465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [5531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1221), - [5534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2374), - [5537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2376), - [5540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2206), - [5543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3208), - [5546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3181), - [5549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2932), - [5552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2931), - [5555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(352), - [5558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(260), - [5561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2930), - [5564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2929), - [5567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2927), - [5570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2925), - [5573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2924), - [5576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2923), - [5579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2922), - [5582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2921), - [5585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(462), - [5588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(31), - [5591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(32), - [5594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(133), - [5597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2920), - [5600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2919), - [5603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2917), - [5606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2916), - [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2915), - [5612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2915), - [5615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3200), - [5618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(876), - [5621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2913), - [5624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2912), - [5627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2911), - [5630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2910), - [5633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2909), - [5636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2908), - [5639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2907), - [5642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1129), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [5677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [5739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1392), - [5742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2288), - [5745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2289), - [5748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2220), - [5751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3246), - [5754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3248), - [5757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3024), - [5760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3023), - [5763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(167), - [5766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(166), - [5769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3022), - [5772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3021), - [5775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3019), - [5778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3017), - [5781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3016), - [5784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3015), - [5787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3014), - [5790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3013), - [5793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(466), - [5796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(10), - [5799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(11), - [5802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(147), - [5805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3008), - [5808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3007), - [5811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3006), - [5814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3005), - [5817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3004), - [5820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3004), - [5823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3186), - [5826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(679), - [5829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3002), - [5832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3001), - [5835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3000), - [5838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2999), - [5841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2998), - [5844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2997), - [5847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2996), - [5850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1162), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [5871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [5981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_blade, 1), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [5985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1278), - [5988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2380), - [5991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2381), - [5994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2209), - [5997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3194), - [6000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3176), - [6003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2963), - [6006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2962), - [6009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(382), - [6012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(370), - [6015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2961), - [6018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2960), - [6021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2959), - [6024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2957), - [6027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2956), - [6030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2955), - [6033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2954), - [6036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2953), - [6039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(461), - [6042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(25), - [6045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(28), - [6048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(126), - [6051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2951), - [6054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2950), - [6057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2949), - [6060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2948), - [6063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2947), - [6066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2947), - [6069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3197), - [6072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(813), - [6075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2943), - [6078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2940), - [6081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2939), - [6084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2938), - [6087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2937), - [6090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2934), - [6093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2933), - [6096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1741), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_operator, 1, .production_id = 1), - [6107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_operator, 1, .production_id = 1), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [6113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_keyword, 1), - [6115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_keyword, 1), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__custom, 3), - [6135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__custom, 3), - [6137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_keyword, 2), - [6139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_keyword, 2), - [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definition, 1, .production_id = 2), - [6143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__definition, 1, .production_id = 2), - [6145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__escaped, 2), - [6147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__escaped, 2), - [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unescaped, 2), - [6151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unescaped, 2), - [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_line_raw, 2), - [6155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_line_raw, 2), - [6157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_raw, 2, .production_id = 1), - [6159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_raw, 2, .production_id = 1), - [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2), - [6163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2), - [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_directive, 2), - [6167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_directive, 2), - [6169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__forelse, 3), - [6171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__forelse, 3), - [6173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_once, 2), - [6175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_once, 2), - [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__while, 3), - [6179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__while, 3), - [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 2), - [6183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 2), - [6185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__persist, 3), - [6187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__persist, 3), - [6189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__teleport, 3), - [6191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__teleport, 3), - [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 1), - [6195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 1), - [6197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_operator, 2, .production_id = 1), - [6199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_operator, 2, .production_id = 1), - [6201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__escaped, 3), - [6203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__escaped, 3), - [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unescaped, 3), - [6207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unescaped, 3), - [6209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__volt, 3), - [6211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__volt, 3), - [6213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_line_raw, 3), - [6215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_line_raw, 3), - [6217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment, 3), - [6219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment, 3), - [6221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3), - [6223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3), - [6225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_once, 3), - [6227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_once, 3), - [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 4), - [6231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 4), - [6233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3), - [6235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3), - [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__push, 3), - [6239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__push, 3), - [6241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pushOnce, 3), - [6243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pushOnce, 3), - [6245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pushIf, 3), - [6247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pushIf, 3), - [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__prepend, 3), - [6251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__prepend, 3), - [6253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__prependOnce, 3), - [6255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__prependOnce, 3), - [6257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if, 3), - [6259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if, 3), - [6261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 5), - [6263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 5), - [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unless, 3), - [6267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unless, 3), - [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__isset, 3), - [6271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__isset, 3), - [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty, 3), - [6275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty, 3), - [6277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__auth, 3), - [6279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__auth, 3), - [6281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 6), - [6283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 6), - [6285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__guest, 3), - [6287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__guest, 3), - [6289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__production, 3), - [6291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__production, 3), - [6293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__env, 3), - [6295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__env, 3), - [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hasSection, 3), - [6299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hasSection, 3), - [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sectionMissing, 3), - [6303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sectionMissing, 3), - [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__error, 3), - [6307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__error, 3), - [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 3), - [6311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 3), - [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for, 3), - [6315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for, 3), - [6317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach, 3), - [6319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach, 3), - [6321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword, 1), - [6323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword, 1), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [6327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definition, 1), - [6329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__definition, 1), - [6331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_php_statement, 1), - [6333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_php_statement, 1), - [6335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw, 1), - [6337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw, 1), - [6339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__nested_directive, 1), - [6341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__nested_directive, 1), - [6343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stack, 1), - [6345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stack, 1), - [6347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional, 1), - [6349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional, 1), - [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop, 1), - [6353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop, 1), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [6357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_livewire, 1), - [6359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_livewire, 1), - [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_parameter, 3), - [6363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__directive_parameter, 3), - [6365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_parameter, 2), - [6367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__directive_parameter, 2), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [6373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), - [6375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [6407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 1), - [6409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 1), - [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__directive_body, 1), - [6413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__directive_body, 1), - [6415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 1), - [6417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 1), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [6421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [6503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__escaped_repeat1, 2), - [6505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__escaped_repeat1, 2), SHIFT_REPEAT(2516), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [6532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__escaped_repeat1, 2), SHIFT_REPEAT(2514), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [6687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__escaped_repeat1, 2), SHIFT_REPEAT(2513), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_repeat1, 2), - [6694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comment_repeat1, 2), SHIFT_REPEAT(2511), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [6847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_parameter_repeat1, 2), SHIFT_REPEAT(3138), - [6850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__directive_parameter_repeat1, 2), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [6912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_repeat1, 2), - [6914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_repeat1, 2), SHIFT_REPEAT(3139), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [6929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_parameter_repeat1, 2), SHIFT_REPEAT(2952), - [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [7122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_repeat1, 1), - [7124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_repeat1, 1), - [7126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__escaped_repeat1, 1, .production_id = 3), - [7128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__escaped_repeat1, 1, .production_id = 3), - [7130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1), - [7132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [7134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_repeat1, 1), - [7136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case, 3), - [7138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [7142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_with_parenthesis, 4), - [7144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_with_parenthesis, 3), - [7146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__directive_parameter_repeat1, 1), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [8158] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [8602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), - [8604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body_with_optional_parameter, 2), + [253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body_with_optional_parameter, 1), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body, 1), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1000), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2318), + [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2317), + [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2215), + [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3256), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3255), + [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2877), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2876), + [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(204), + [454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(203), + [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2875), + [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2874), + [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2873), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2871), + [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2870), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(842), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(454), + [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2869), + [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2868), + [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2867), + [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(439), + [492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(41), + [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(42), + [498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(130), + [501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2864), + [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2863), + [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2862), + [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2861), + [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2860), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2860), + [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3168), + [522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(449), + [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2858), + [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2857), + [531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2856), + [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2855), + [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2852), + [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2851), + [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2847), + [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(841), + [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(841), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body, 2), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(780), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2338), + [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2347), + [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2208), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3230), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3229), + [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2730), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2729), + [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(229), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(230), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2728), + [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2727), + [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2726), + [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2725), + [686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2724), + [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(700), + [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(447), + [695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2723), + [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2722), + [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2721), + [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(434), + [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(55), + [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(58), + [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(131), + [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2720), + [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2719), + [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2718), + [725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2717), + [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2716), + [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2716), + [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3232), + [737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(452), + [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2714), + [743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2713), + [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2712), + [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2710), + [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2709), + [755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2708), + [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2707), + [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(629), + [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(629), + [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(710), + [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2333), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2321), + [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2216), + [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3219), + [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3218), + [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2704), + [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2702), + [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(247), + [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(248), + [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2701), + [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2700), + [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2699), + [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2697), + [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2695), + [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(768), + [815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(451), + [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2694), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2693), + [824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2692), + [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(436), + [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(57), + [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(56), + [836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(142), + [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2687), + [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2686), + [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2685), + [848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2684), + [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2683), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2683), + [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3236), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(448), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2681), + [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2680), + [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2679), + [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2678), + [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2677), + [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2676), + [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2675), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(625), + [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(625), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1063), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2300), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2299), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2219), + [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3250), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3249), + [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2846), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2845), + [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(168), + [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(170), + [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2842), + [925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2841), + [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2840), + [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2839), + [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2838), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(581), + [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(443), + [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2837), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2833), + [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2832), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(435), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(43), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(44), + [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(135), + [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2831), + [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2830), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2829), + [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2828), + [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2827), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2827), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3216), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(456), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2824), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2823), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2822), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2821), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2820), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2517), + [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2818), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(775), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(775), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(845), + [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2237), + [1023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2236), + [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2226), + [1029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3234), + [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3233), + [1035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2764), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2763), + [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(214), + [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(215), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2760), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2759), + [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2754), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2753), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2750), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(632), + [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(444), + [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2749), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2748), + [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2747), + [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(431), + [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(53), + [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(54), + [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(145), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2746), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2745), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2743), + [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2741), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2740), + [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2740), + [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3231), + [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(455), + [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2738), + [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2737), + [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2736), + [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2735), + [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2733), + [1128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2732), + [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2731), + [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(635), + [1137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(635), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(977), + [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2275), + [1318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2274), + [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2227), + [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3244), + [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3243), + [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2817), + [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2816), + [1336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(169), + [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(173), + [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2815), + [1345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2814), + [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2813), + [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2812), + [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2811), + [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(493), + [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(450), + [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2810), + [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2809), + [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2808), + [1372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(430), + [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(45), + [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(48), + [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(138), + [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2807), + [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2806), + [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2805), + [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2804), + [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2802), + [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2802), + [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3217), + [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(440), + [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2800), + [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2799), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2795), + [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2794), + [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2793), + [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2792), + [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2791), + [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(705), + [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(705), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(535), + [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(2248), + [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(2247), + [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(2228), + [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3171), + [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3213), + [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3118), + [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3117), + [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(268), + [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(267), + [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3116), + [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3115), + [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3114), + [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3113), + [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3111), + [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(1019), + [1567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(441), + [1570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3109), + [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3108), + [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3107), + [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(432), + [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(2), + [1585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3), + [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(144), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), + [1593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3103), + [1596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3101), + [1599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3100), + [1602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3099), + [1605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3098), + [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3098), + [1611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3210), + [1614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(457), + [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3096), + [1620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3095), + [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3094), + [1626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3093), + [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3092), + [1632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3091), + [1635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3090), + [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(748), + [1641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(748), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(976), + [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2305), + [1734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2304), + [1737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2218), + [1740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3192), + [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3182), + [1746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2985), + [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3003), + [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(351), + [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(429), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3027), + [1761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3028), + [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3036), + [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3037), + [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3043), + [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1029), + [1776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(453), + [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3044), + [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3067), + [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3073), + [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(437), + [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(39), + [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(18), + [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(121), + [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3074), + [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3077), + [1806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3105), + [1809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3119), + [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3120), + [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3120), + [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3167), + [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(446), + [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3130), + [1827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3131), + [1830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3142), + [1833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3155), + [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3154), + [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3153), + [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3152), + [1845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(612), + [1848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(612), + [1851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(911), + [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2262), + [1857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2259), + [1860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2229), + [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3240), + [1866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3239), + [1869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2789), + [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2787), + [1875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(187), + [1878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(191), + [1881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2786), + [1884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2785), + [1887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2784), + [1890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2783), + [1893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2782), + [1896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(563), + [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(442), + [1902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2781), + [1905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2779), + [1908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2778), + [1911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(438), + [1914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(49), + [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(50), + [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(143), + [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2777), + [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2776), + [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2775), + [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2774), + [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2773), + [1938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2773), + [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3223), + [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(459), + [1947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2771), + [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2770), + [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2769), + [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2768), + [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2767), + [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2766), + [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2765), + [1968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(638), + [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(638), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(600), + [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2277), + [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2276), + [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2223), + [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3193), + [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3195), + [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3151), + [2095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3150), + [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(304), + [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(302), + [2104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3149), + [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3147), + [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3146), + [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3145), + [2116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3144), + [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1095), + [2122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(445), + [2125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3143), + [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3141), + [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3140), + [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(433), + [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(15), + [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(12), + [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(123), + [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3136), + [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3135), + [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3134), + [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3133), + [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3132), + [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3132), + [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3209), + [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(458), + [2170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3128), + [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3127), + [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3126), + [2179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3124), + [2182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3123), + [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3122), + [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3121), + [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(680), + [2194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(680), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [2491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1720), + [2494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2232), + [2497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2307), + [2500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2217), + [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3178), + [2506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3174), + [2509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2569), + [2512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2572), + [2515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(175), + [2518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(148), + [2521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2573), + [2524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2574), + [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2596), + [2530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2560), + [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2606), + [2536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2610), + [2539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2619), + [2542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2642), + [2545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(472), + [2548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(20), + [2551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(19), + [2554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(122), + [2557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2662), + [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2665), + [2563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2666), + [2566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2669), + [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2688), + [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2688), + [2575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3235), + [2578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(621), + [2581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2690), + [2584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2696), + [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2698), + [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2703), + [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2711), + [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2604), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), + [2601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2742), + [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1956), + [2607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1956), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_body_with_parameter, 2), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_body_with_parameter, 1), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [2892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(1838), + [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2340), + [2898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2346), + [2901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2210), + [2904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3165), + [2907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3166), + [2910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2972), + [2913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2973), + [2916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(419), + [2919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(416), + [2922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2974), + [2925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2984), + [2928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2865), + [2931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3010), + [2934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3012), + [2937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3018), + [2940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3020), + [2943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3033), + [2946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(475), + [2949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(14), + [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(13), + [2955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(139), + [2958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3064), + [2961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3065), + [2964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3066), + [2967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3075), + [2970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3076), + [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3076), + [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3172), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), + [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(615), + [2984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3079), + [2987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3102), + [2990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3106), + [2993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3110), + [2996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3112), + [2999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3009), + [3002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3129), + [3005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(1962), + [3008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(1962), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2108), + [3020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2379), + [3023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2373), + [3026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2204), + [3029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3205), + [3032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3222), + [3035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2752), + [3038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2751), + [3041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(394), + [3044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(396), + [3047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2739), + [3050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2715), + [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2706), + [3056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2705), + [3059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2689), + [3062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2682), + [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2664), + [3068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2663), + [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(478), + [3074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(51), + [3077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(59), + [3080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(146), + [3083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2621), + [3086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2614), + [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2613), + [3092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2588), + [3095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2571), + [3098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2571), + [3101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3247), + [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1001), + [3107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2570), + [3110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2568), + [3113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2567), + [3116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2561), + [3119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2552), + [3122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2533), + [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2524), + [3128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2063), + [3131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2063), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [3144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2171), + [3147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2339), + [3150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2337), + [3153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2213), + [3156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3180), + [3159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3164), + [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2522), + [3165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2521), + [3168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(387), + [3171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(386), + [3174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2819), + [3177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2825), + [3180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2843), + [3183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2844), + [3186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2850), + [3189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2853), + [3192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2859), + [3195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2887), + [3198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(474), + [3201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(47), + [3204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(46), + [3207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(134), + [3210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2891), + [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2914), + [3216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2935), + [3219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2936), + [3222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2944), + [3225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2944), + [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3196), + [3231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1032), + [3234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2945), + [3237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2946), + [3240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2958), + [3243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2975), + [3246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2981), + [3249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2982), + [3252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2983), + [3255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2054), + [3258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2054), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(1964), + [3320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2378), + [3323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2377), + [3326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2203), + [3329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3253), + [3332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3206), + [3335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2889), + [3338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2890), + [3341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(412), + [3344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(413), + [3347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3056), + [3350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3050), + [3353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3034), + [3356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2854), + [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2849), + [3362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2848), + [3365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2656), + [3368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2652), + [3371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(463), + [3374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(22), + [3377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(23), + [3380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(132), + [3383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2650), + [3386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2531), + [3389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2532), + [3392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2691), + [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2559), + [3398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2559), + [3401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3251), + [3404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(573), + [3407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2562), + [3410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2594), + [3413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2595), + [3416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2597), + [3419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2627), + [3422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2628), + [3425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2629), + [3428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(1965), + [3431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(1965), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1661), + [3439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2286), + [3442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2287), + [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2222), + [3448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3185), + [3451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3184), + [3454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2543), + [3457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2542), + [3460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(350), + [3463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(420), + [3466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2541), + [3469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2540), + [3472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2539), + [3475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2538), + [3478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2537), + [3481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2536), + [3484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2535), + [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2534), + [3490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(470), + [3493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(27), + [3496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(26), + [3499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(119), + [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2530), + [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2529), + [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2528), + [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2526), + [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2525), + [3517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2525), + [3520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3254), + [3523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(623), + [3526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2523), + [3529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2520), + [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2519), + [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2886), + [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2550), + [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2527), + [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2558), + [3547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1900), + [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1900), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2055), + [3776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2354), + [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2355), + [3782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2207), + [3785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3227), + [3788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3228), + [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3089), + [3794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3088), + [3797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(235), + [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(232), + [3803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3087), + [3806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3086), + [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3085), + [3812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3084), + [3815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3083), + [3818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3082), + [3821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3081), + [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3080), + [3827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(471), + [3830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4), + [3833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5), + [3836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(141), + [3839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3072), + [3842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3071), + [3845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3070), + [3848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3069), + [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3068), + [3854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3068), + [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3179), + [3860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(541), + [3863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3063), + [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3062), + [3869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3061), + [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3060), + [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3059), + [3878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3058), + [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3057), + [3884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1277), + [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1277), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1335), + [3951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2334), + [3954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2335), + [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2212), + [3960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3226), + [3963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3224), + [3966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2995), + [3969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2994), + [3972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(303), + [3975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(149), + [3978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2993), + [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2992), + [3984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2991), + [3987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2990), + [3990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2989), + [3993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2988), + [3996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2987), + [3999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2986), + [4002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(465), + [4005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(21), + [4008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(24), + [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(120), + [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2980), + [4017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2979), + [4020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2978), + [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2977), + [4026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2976), + [4029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2976), + [4032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3191), + [4035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(747), + [4038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2971), + [4041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2970), + [4044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2969), + [4047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2968), + [4050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2967), + [4053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2966), + [4056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2965), + [4059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1105), + [4062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1105), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [4143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1602), + [4146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2278), + [4149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2279), + [4152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2202), + [4155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3190), + [4158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3189), + [4161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2580), + [4164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2579), + [4167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(318), + [4170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(319), + [4173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2578), + [4176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2577), + [4179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2576), + [4182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2575), + [4185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2566), + [4188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2565), + [4191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2564), + [4194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2563), + [4197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(469), + [4200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(30), + [4203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(29), + [4206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(124), + [4209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2557), + [4212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2556), + [4215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2555), + [4218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2554), + [4221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2553), + [4224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2553), + [4227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3252), + [4230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(626), + [4233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2551), + [4236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2549), + [4239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2548), + [4242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2547), + [4245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2546), + [4248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2545), + [4251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2544), + [4254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1841), + [4257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1841), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [4338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1779), + [4341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2319), + [4344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2320), + [4347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2214), + [4350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3169), + [4353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3163), + [4356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2744), + [4359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2755), + [4362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(375), + [4365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(380), + [4368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2757), + [4371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2790), + [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2796), + [4377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2803), + [4380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2826), + [4383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2834), + [4386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2835), + [4389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2836), + [4392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(473), + [4395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(17), + [4398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(16), + [4401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(118), + [4404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2734), + [4407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2866), + [4410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2872), + [4413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2880), + [4416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2882), + [4419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2882), + [4422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3201), + [4425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(619), + [4428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2895), + [4431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2918), + [4434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2926), + [4437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2928), + [4440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2941), + [4443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2942), + [4446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2964), + [4449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1959), + [4452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1959), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [4459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1543), + [4462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2263), + [4465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2264), + [4468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2221), + [4471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3199), + [4474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3198), + [4477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2609), + [4480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2608), + [4483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(298), + [4486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(301), + [4489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2607), + [4492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2605), + [4495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2603), + [4498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2602), + [4501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2601), + [4504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2600), + [4507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2599), + [4510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2598), + [4513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(460), + [4516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(34), + [4519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(33), + [4522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(127), + [4525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2593), + [4528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2592), + [4531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2591), + [4534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2590), + [4537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2589), + [4540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2589), + [4543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3245), + [4546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(630), + [4549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2587), + [4552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2586), + [4555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2585), + [4558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2584), + [4561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2583), + [4564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2582), + [4567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2581), + [4570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1782), + [4573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1782), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [4656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1897), + [4659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2358), + [4662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2360), + [4665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2205), + [4668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3211), + [4671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3212), + [4674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3137), + [4677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3148), + [4680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(406), + [4683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(405), + [4686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3156), + [4689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3157), + [4692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3158), + [4695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3159), + [4698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3160), + [4701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3161), + [4704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3097), + [4707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3078), + [4710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(477), + [4713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(9), + [4716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(8), + [4719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(140), + [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2801), + [4725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2798), + [4728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2797), + [4731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2788), + [4734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2780), + [4737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2780), + [4740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3225), + [4743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(608), + [4746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2761), + [4749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2758), + [4752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2756), + [4755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2660), + [4758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2659), + [4761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2648), + [4764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3125), + [4767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1963), + [4770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1963), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [4855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1484), + [4858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2249), + [4861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2231), + [4864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2230), + [4867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3204), + [4870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3202), + [4873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2639), + [4876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2638), + [4879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(286), + [4882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(287), + [4885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2637), + [4888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2636), + [4891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2635), + [4894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2634), + [4897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2633), + [4900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2632), + [4903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2631), + [4906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2630), + [4909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(468), + [4912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(37), + [4915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(36), + [4918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(129), + [4921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2626), + [4924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2625), + [4927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2624), + [4930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2623), + [4933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2622), + [4936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2622), + [4939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3242), + [4942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(636), + [4945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2620), + [4948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2618), + [4951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2617), + [4954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2616), + [4957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2615), + [4960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2612), + [4963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2611), + [4966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1723), + [4969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1723), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [5060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1425), + [5063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2233), + [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2235), + [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2225), + [5072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3215), + [5075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3214), + [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2674), + [5081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2673), + [5084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(265), + [5087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(266), + [5090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2672), + [5093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2671), + [5096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2670), + [5099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2668), + [5102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2667), + [5105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2661), + [5108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2658), + [5111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2657), + [5114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(467), + [5117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(52), + [5120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(40), + [5123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(117), + [5126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2655), + [5129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2654), + [5132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2653), + [5135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2651), + [5138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2649), + [5141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2649), + [5144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3241), + [5147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(639), + [5150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2647), + [5153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2646), + [5156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2645), + [5159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2644), + [5162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2643), + [5165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2641), + [5168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2640), + [5171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1664), + [5174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1664), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [5263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1899), + [5266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2250), + [5269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2251), + [5272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2224), + [5275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3237), + [5278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3238), + [5281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3055), + [5284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3054), + [5287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(190), + [5290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(188), + [5293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3053), + [5296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3052), + [5299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3051), + [5302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3049), + [5305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3048), + [5308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3047), + [5311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3046), + [5314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3045), + [5317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(476), + [5320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6), + [5323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(7), + [5326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(137), + [5329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3042), + [5332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3041), + [5335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3040), + [5338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3039), + [5341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3038), + [5344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3038), + [5347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3183), + [5350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(611), + [5353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3035), + [5356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3032), + [5359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3031), + [5362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3030), + [5365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3029), + [5368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3026), + [5371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3025), + [5374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1220), + [5377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1220), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [5382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1163), + [5385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2345), + [5388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2343), + [5391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2211), + [5394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3220), + [5397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3221), + [5400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2906), + [5403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2905), + [5406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(291), + [5409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(242), + [5412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2904), + [5415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2903), + [5418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2902), + [5421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2901), + [5424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2900), + [5427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2899), + [5430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2898), + [5433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2897), + [5436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(464), + [5439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(35), + [5442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(38), + [5445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(128), + [5448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2896), + [5451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2894), + [5454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2893), + [5457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2892), + [5460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2888), + [5463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2888), + [5466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3162), + [5469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(939), + [5472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2518), + [5475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2885), + [5478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2884), + [5481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2883), + [5484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2881), + [5487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2879), + [5490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2878), + [5493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1190), + [5496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1190), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [5663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1221), + [5666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2374), + [5669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2376), + [5672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2206), + [5675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3208), + [5678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3181), + [5681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2932), + [5684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2931), + [5687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(352), + [5690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(260), + [5693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2930), + [5696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2929), + [5699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2927), + [5702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2925), + [5705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2924), + [5708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2923), + [5711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2922), + [5714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2921), + [5717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(462), + [5720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(31), + [5723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(32), + [5726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(133), + [5729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2920), + [5732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2919), + [5735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2917), + [5738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2916), + [5741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2915), + [5744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2915), + [5747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3200), + [5750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(876), + [5753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2913), + [5756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2912), + [5759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2911), + [5762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2910), + [5765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2909), + [5768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2908), + [5771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2907), + [5774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1129), + [5777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1129), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [5876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1392), + [5879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2288), + [5882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2289), + [5885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2220), + [5888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3246), + [5891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3248), + [5894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3024), + [5897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3023), + [5900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(167), + [5903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(166), + [5906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3022), + [5909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3021), + [5912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3019), + [5915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3017), + [5918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3016), + [5921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3015), + [5924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3014), + [5927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3013), + [5930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(466), + [5933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(10), + [5936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(11), + [5939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(147), + [5942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3008), + [5945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3007), + [5948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3006), + [5951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3005), + [5954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3004), + [5957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3004), + [5960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3186), + [5963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(679), + [5966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3002), + [5969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3001), + [5972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3000), + [5975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2999), + [5978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2998), + [5981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2997), + [5984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2996), + [5987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1162), + [5990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1162), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [6123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_blade, 1), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [6127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1278), + [6130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2380), + [6133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2381), + [6136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2209), + [6139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3194), + [6142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3176), + [6145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2963), + [6148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2962), + [6151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(382), + [6154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(370), + [6157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2961), + [6160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2960), + [6163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2959), + [6166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2957), + [6169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2956), + [6172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2955), + [6175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2954), + [6178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2953), + [6181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(461), + [6184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(25), + [6187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(28), + [6190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(126), + [6193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2951), + [6196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2950), + [6199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2949), + [6202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2948), + [6205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2947), + [6208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2947), + [6211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3197), + [6214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(813), + [6217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2943), + [6220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2940), + [6223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2939), + [6226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2938), + [6229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2937), + [6232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2934), + [6235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2933), + [6238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1741), + [6241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1741), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_operator, 1, .production_id = 1), + [6252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_operator, 1, .production_id = 1), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_keyword, 1), + [6260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_keyword, 1), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [6278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__custom, 3), + [6280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__custom, 3), + [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_keyword, 2), + [6284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_keyword, 2), + [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definition, 1, .production_id = 2), + [6288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__definition, 1, .production_id = 2), + [6290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__escaped, 2), + [6292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__escaped, 2), + [6294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unescaped, 2), + [6296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unescaped, 2), + [6298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_line_raw, 2), + [6300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_line_raw, 2), + [6302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_raw, 2, .production_id = 1), + [6304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_raw, 2, .production_id = 1), + [6306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2), + [6308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2), + [6310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_directive, 2), + [6312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_directive, 2), + [6314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__forelse, 3), + [6316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__forelse, 3), + [6318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_once, 2), + [6320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_once, 2), + [6322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__while, 3), + [6324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__while, 3), + [6326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 2), + [6328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 2), + [6330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__persist, 3), + [6332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__persist, 3), + [6334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__teleport, 3), + [6336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__teleport, 3), + [6338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 1), + [6340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 1), + [6342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_operator, 2, .production_id = 1), + [6344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_operator, 2, .production_id = 1), + [6346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__escaped, 3), + [6348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__escaped, 3), + [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unescaped, 3), + [6352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unescaped, 3), + [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__volt, 3), + [6356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__volt, 3), + [6358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_line_raw, 3), + [6360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_line_raw, 3), + [6362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment, 3), + [6364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment, 3), + [6366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3), + [6368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3), + [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_once, 3), + [6372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_once, 3), + [6374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 4), + [6376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 4), + [6378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3), + [6380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3), + [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__push, 3), + [6384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__push, 3), + [6386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pushOnce, 3), + [6388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pushOnce, 3), + [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pushIf, 3), + [6392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pushIf, 3), + [6394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__prepend, 3), + [6396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__prepend, 3), + [6398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__prependOnce, 3), + [6400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__prependOnce, 3), + [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if, 3), + [6404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if, 3), + [6406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 5), + [6408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 5), + [6410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unless, 3), + [6412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unless, 3), + [6414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__isset, 3), + [6416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__isset, 3), + [6418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty, 3), + [6420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty, 3), + [6422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__auth, 3), + [6424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__auth, 3), + [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 6), + [6428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 6), + [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__guest, 3), + [6432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__guest, 3), + [6434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__production, 3), + [6436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__production, 3), + [6438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__env, 3), + [6440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__env, 3), + [6442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hasSection, 3), + [6444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hasSection, 3), + [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sectionMissing, 3), + [6448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sectionMissing, 3), + [6450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__error, 3), + [6452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__error, 3), + [6454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 3), + [6456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 3), + [6458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for, 3), + [6460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for, 3), + [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach, 3), + [6464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach, 3), + [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword, 1), + [6468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword, 1), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [6472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definition, 1), + [6474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__definition, 1), + [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_php_statement, 1), + [6478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_php_statement, 1), + [6480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw, 1), + [6482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw, 1), + [6484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__nested_directive, 1), + [6486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__nested_directive, 1), + [6488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stack, 1), + [6490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stack, 1), + [6492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional, 1), + [6494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional, 1), + [6496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop, 1), + [6498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop, 1), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_livewire, 1), + [6504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_livewire, 1), + [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_parameter, 3), + [6508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__directive_parameter, 3), + [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_parameter, 2), + [6512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__directive_parameter, 2), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), + [6520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [6552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 1), + [6554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 1), + [6556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__directive_body, 1), + [6558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__directive_body, 1), + [6560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 1), + [6562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 1), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__escaped_repeat1, 2), + [6656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__escaped_repeat1, 2), SHIFT_REPEAT(2516), + [6659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__escaped_repeat1, 2), SHIFT_REPEAT(2516), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [6686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__escaped_repeat1, 2), SHIFT_REPEAT(2514), + [6689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__escaped_repeat1, 2), SHIFT_REPEAT(2514), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [6846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__escaped_repeat1, 2), SHIFT_REPEAT(2513), + [6849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__escaped_repeat1, 2), SHIFT_REPEAT(2513), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [6854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_repeat1, 2), + [6856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comment_repeat1, 2), SHIFT_REPEAT(2511), + [6859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comment_repeat1, 2), SHIFT_REPEAT(2511), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [7012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_parameter_repeat1, 2), SHIFT_REPEAT(3138), + [7015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__directive_parameter_repeat1, 2), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [7077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_repeat1, 2), + [7079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_repeat1, 2), SHIFT_REPEAT(3139), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [7094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_parameter_repeat1, 2), SHIFT_REPEAT(2952), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [7287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_repeat1, 1), + [7289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_repeat1, 1), + [7291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__escaped_repeat1, 1, .production_id = 3), + [7293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__escaped_repeat1, 1, .production_id = 3), + [7295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1), + [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [7299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_repeat1, 1), + [7301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case, 3), + [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [7307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_with_parenthesis, 4), + [7309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_with_parenthesis, 3), + [7311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__directive_parameter_repeat1, 1), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [8323] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [8767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), + [8769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), }; #ifdef __cplusplus